how to edit mobile version so it shows featured image in summary
-
HI
I have set featured images on all of my blog posts, which show on the left hand side of the article summaries on the full website version.
When viewing the site in tablet, or mobile version, these images are not visible. How do I change this so that they show above the post summary?
The blog I need help with is: (visible only to logged in users)
-
Hi there, there are two elements that are hidden with a media query at 620px and narrower, the .entry-details parent, and then the featured image, which is in a child element, so we have to unhide both of them. Give the following a try.
@media screen and (max-width:620px) { #content .post img.wp-post-image, #content .post .entry-details { display: block; } }
- The topic ‘how to edit mobile version so it shows featured image in summary’ is closed to new replies.