• Hi,

    I’m using the portfolio feature in the Virtue theme to build an archive but my client wants more than 6 columns to display. Is there a way to achieve this?
    Also, how can I scale the images on small screens to my liking to be kept in a spread out style so that many are visible at one time like on the desktop width. Obviously they will scale to some extent but I don’t want to scroll through one photo at a time.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • hannah

    (@hannahritner)

    Hey,
    To have more than six columns you would need to add this function into a child theme.
    As for more than one column on mobile, you can do this with some css. Do you mind posting a link to your site?

    Hannah

    ON desktop you could also do 8 columns with css.. try this and let me know:

    @media (max-width: 767px){
        #portfoliowrapper .kad_portfolio_fade_in {
        width: 50%;
        float: left;
        }
    }
    @media (min-width: 1200px){
        #portfoliowrapper .kad_portfolio_fade_in {
        width: 12.5%;
        float: left;
        }
    }

    Kadence Themes

    Thread Starter fireenginered

    (@fireenginered)

    Hey!

    Thanks for the replies!

    I’m developing my site on a local server right now so I can’t really link to it at the moment. The client hasn’t decided on a hosting platform and a domain so until then I’ll take a try at the css provided by Kandence Themes.

    Also, why do I have to use a child theme? Is it required?

    Thanks again.

    hannah

    (@hannahritner)

    A child theme is only required if you plan to edit the theme files. See here- https://www.kadencethemes.com/child-themes/
    If you just plan to add css as Ben suggested you do not need a child theme. You can just paste that directly into your custom css box in Theme Options > Advanced Settings.

    Hannah

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘More than 6 columns in portfolio grid?’ is closed to new replies.