• Resolved lilychu

    (@lilychu)


    I’m using the theme with the container-fluid class applied and I was wondering how can I make the boxes of the home get wider. Their width is about 240px in wide resolution, how could I make them, for example, 480px? I was trying to find out myself but I couldn’t. Can someone help? By the way, I love the theme. Thanks

Viewing 1 replies (of 1 total)
  • Theme Author ThemesMatic

    (@themesmatic)

    Hey @lilychu

    Glad you like the theme ??

    One way you could do it is in style.css change:

    .row {
        -moz-column-width: 18em;
        -webkit-column-width: 18em;
        -moz-column-gap: 1em;
        -webkit-column-gap: 1em;
    }

    to:

    .row {
        -moz-column-width: 25em;
        -webkit-column-width: 18em;
        -moz-column-gap: 1em;
        -webkit-column-gap: 1em;
    }

    as an example.

    I’ll admit, this wasn’t the best implementation for a bootstrap grid but the new version (I’m working on) is a lot easier and works better.

Viewing 1 replies (of 1 total)
  • The topic ‘Wider post boxes’ is closed to new replies.