How to Shrink Featured Image only on single Essential Grid pages?

Hello. I’ve inherited this site. We’re using Essential Grid to display a faculty list, but the client would like the featured image to be a thumbnail or small image on the single post, floated to the left rather than above the content. This seems like it should be straightforward CSS changes, but nothing’s working.

Here’s the single post I’m working with for testing CSS changes:
https://www.eugenewaldorf.org/essential_grid/wilson-molly/

Thanks.

Hey There,

Thanks for writing in! Do you want something like this?

If that is the case, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.single-essential_grid .entry-featured {
    float: left;
    max-width: 180px;
    margin-right: 20px;
    margin-bottom: 0px;
    padding-top: 20px; 
    padding-left: 20px;
    border: none;
    box-shadow: none;
}

Hope this helps. Please let us know how it goes.

1 Like

Yes! That’s perfect, thank you!

Glad we were able to help :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.