Home Forums WoodMart support forum Blog element with columns

Blog element with columns

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #93804

    hollistergj
    Participant

    Currently when I use the blog element and select “small image” as the design format. I can only show the blog posts in a single column. http://prntscr.com/lqmju8
    WIth a full width column this makes the images huge… i would love to be able to define 2 columns so it splits the posts into a 2 column layout but uses the small images format.

    #93832

    Artem Temos
    Keymaster
    Xtemos team

    Hi,

    Try to add the following code snippet to the Custom CSS area for mobile devices in Theme Settings

    .woodmart-blog-holder {
        display: flex;
        flex-wrap: wrap;
    }
    
    .woodmart-blog-holder .blog-design-small-images {
        flex-basis: 50%;
        max-width: 50%;
    }

    Regards

    #93840

    hollistergj
    Participant

    WOW!!! That’s great!!! What rule do I add so it’s still responsive on the smaller browser widths?

    #93886

    Artem Temos
    Keymaster
    Xtemos team

    Sorry, we meant to add it for desktop devices only. Then, this code will not be applied on mobile and it will be responsive.

Viewing 4 posts - 1 through 4 (of 4 total)