• Hi,

    Great theme!

    Is there a way you can reduce the width of portfolio image items so that you can get the 4 columns whilst still having a sidebar?

    Best,
    Ben

Viewing 3 replies - 1 through 3 (of 3 total)
  • Yes, you can customize pretty much anything using CSS and/or changing the PHP files. If you want actual specific help, you have to post a link to your site.

    Thread Starter benhawley

    (@benhawley)

    Thanks so much for the feedback – I’m not all that comfortable with CSS but could probably have a play around – problem is, I am not sure where in the editor I should be putting / changing the code

    Here is the site:

    https://www.vivaciousworld-motorsport.com/clients/

    Any further help you can give would be amazing…

    Best,
    Ben

    That’s a commercial theme, so you’ll really need to contact them for support — commercial themes are not generally supported here.

    That said, I looked at the CSS and found that it’s a bit complicated and messy in the CSS for that section. You’ll have to play around with it and see if you can get it to look right. It’s a flexible width page so theoretically you can make it as wide as you want. But whether or not it works well (appearance and for users) is another question.

    The first thing is that the following CSS sets the width of that section to 630px:
    line 1611:

    .right_sidebar #main .content {
        overflow: hidden;
        width: 630px;
    }

    But each of the columns is set to 219px here:
    line 2479

    .portfolio_four_columns li {
        width: 219px;
    }

    So it’s impossible (simple math) to fit four columns unless you change the width of the first part.

    Also, the following 2 CSS declarations are affecting the layout of that section — so you might need to change these too:

    line 2476:

    .portfolios .portfolio_four_columns {
        margin-right: -28px;
    }

    line 2488:

    ul.portfolio_four_columns li {
        margin-right: 28px;
    }

    Good luck!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Portfolio Columns’ is closed to new replies.