Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #52556
    Greg pallay
    Guest

    Hello everyone, I have built a wp website with bold grid and it is supposed to be screen size responsive but I can’t seem to get the site on my cell phone to look like it does on boldgrid. It has an option for screen size but it is not what comes up on an actual device

    #52639
    Brandon C
    Keymaster

    Hi Greg!

    Thanks for reaching out and thank you for using Crio Pro WordPress theme!

    Crio is built on the Bootstrap Framework so it’s more or less created to be mobile responsive right out of the box but it can sometimes take a few tweaks to get it to display exactly the way you want.

    One of the main concerns we get is the Auto-Hyphens for Headings in Crio. Crio is set to break up longer words in your headings and add hyphens to them as the available screen real estate shrinks by default, but there are particular use cases where you might want to change this configuration. Unfortunately there isn’t a control within the theme Customization interface to make such a change, but this alteration can be accomplished with a little Custom CSS know-how.

    The following snippet will deactivate the automatic word breaks and hyphens normally added by Crio to all website headings:

    .palette-primary .h1, .palette-primary .h2, .palette-primary .h3, .palette-primary .h4, .palette-primary .h5, .palette-primary .h6, .palette-primary h1, .palette-primary h2, .palette-primary h3, .palette-primary h4, .palette-primary h5, .palette-primary h6 {
        word-wrap: normal;
        hyphens: manual;
        -webkit-hyphens: manual;
    }

    I hope this helps! If you need further assistance please let us know of any specific issues you’re experiencing with Crio or BoldGrid Post and Page Builder for WordPress!

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Having issues with mobile responsiveness in Crio WordPress theme’ is closed to new replies.