Could you help me find the right style to fix the issue that I am having with my Blog listing at–
http://dev.eldernetwork.net/aging-at-home/
When I look at it on an iPhone I see each featured image and then a great deal of white space below each image and no excerpt text.
As I pull the image in on my computer desktop screen I see the type in a narrow column to right of the image and a large blank space below the image.
What would be the media query or screen min or max to style this so the title and text drops down correctly and displays correctly below the photo…or perhaps just have the text title and excerpt on the listings on the mobile size?
Thanks,
David
Hi dcarlsondesign,
Please try the following in Quick CSS under Enfold–>General Styling:
@media only screen and (max-width: 767px) {
.responsive .content .entry-content-wrapper {
min-width: 100% !important;
}
}
Cheers!
Rikard
Thanks Rikard,
That works.
So it is by styling these item’s min-width: 100%; the are forced to drop down and be displayed only as one column.
David