Blog element with columns
-
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.
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
WOW!!! That’s great!!! What rule do I add so it’s still responsive on the smaller browser widths?
Sorry, we meant to add it for desktop devices only. Then, this code will not be applied on mobile and it will be responsive.