I would like to add value for places that subscribe and are featured so that they can display an image on the listing page. For non-featured free places, I’d prefer that they do not have an image. I figured out how to make the font size of the featured listings larger using this css:
h3.geodir-entry-title a {font-size: 14px; color: #333;}
.gd-post-featured h3 a {font-size: 25px !important;}
However, I’d also like to hide the images for non-featured places if possible. Is there a way to do that? If I simply don’t add an image to the place and don’t add a default listing image to the category, then no image appears. However, there is still an empty space on the listing page that takes the place of the image. That looks bad on mobile screens and I’d like to remove that blank space where the image would be.
I know that I can remove all images on the listing page with this css, but only want to remove them for the non-featured listings.
.geodir-post-img {
display:none!important;
}