• Resolved khessmess

    (@khessmess)


    Hi! I am using the following shortcode for my listing page:

    [listing tools_top=”on” sortby=”date” sort_order=”DEC” status=”current” listing limit=”30″ template=”slim” columns=”3″]

    There is one shortcode on top of the page for the Current listings, and under that is another one for Sold listings.

    There are a few rows with a listing by itself – for example, the third row just shows one listing instead of three columns of listings, it’s as if they are grouped in sets of 7, so after the 7th one (which is in a row by itself) the next row is a straight line, and they are masonry up until the 7th one by itself again.

    I hope that makes sense. ??

    Is there any way to fix it so it looks more continuous, doesn’t break them up like that?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Merv Barrett

    (@mervb1)

    Can you inspect the elements that make up the listing cards. One of the containers has a min-height set via CSS. Due to your fonts this might need an adjustment to suit your theme and create a uniform look.

    /** CSS **/
    body .epl-property-blog.epl-listing-grid-view .property-box.property-box-left.property-featured-image-wrapper {
    /** use this if not force cropping your images **/
    max-height: 190px;
    overflow: hidden;
    }

    body .epl-property-blog-slim.epl-listing-grid-view .property-box-right {
    min-height: 280px;
    }

    In your case looks like the image size is different for the listings. See this guide about implementing a different crop from the default 300×200 image size.

    epl_image_sizes filter to change the default image sizes

    Adjusting your to 587×392 will do the trick. Once the filter is in place Force Regenerate your Thumbnails.

    Thread Starter khessmess

    (@khessmess)

    Thank you SO much! This got me in the right direction to not only fix the problem but also streamline the mobile dimensions as well. Thanks again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Column offset, groups of 7?’ is closed to new replies.