Boardwalk theme – size of featured image in pages
-
I’m having trouble re-sizing the featured image in pages using the Boardwalk Theme.
I found this CSS code that works prefectly for posts but not sure what the equivalent is for pages. It feels like there’s an easy solution but I don’t know CSS just pasting it blindly!
body.single .entry-thumbnail {
max-height: 200px;
}The blog I need help with is: (visible only to logged in users)
-
Hi, pages will need a different selector. You can add the selector to the rule you have so that it looks like this
body.page .entry-thumbnail, body.single .entry-thumbnail { max-height: 200px; }or you can set a separate rule for pages like this and adjust as desired.
body.page .entry-thumbnail { max-height: 200px; } -
-
- The topic ‘Boardwalk theme – size of featured image in pages’ is closed to new replies.