Unwrap Title from Feature Image
-
I’m using the Argent theme, and the homepage looks great from desktop view. However, from a phone, the post titles are still wrapped on the side of the feature images. There isn’t enough space, so only one word of the title shows on each line, and it looks really bad. Is there a way to move the title below the image on mobile?
The blog I need help with is: (visible only to logged in users)
-
Hi there!
Try this CSS out:
@media screen and (max-width: 500px) { .blog .post-thumbnail { display: block; float: none; text-align: center; } }That should pop the image above the title, and center it, on smaller screens :)
-
-
- The topic ‘Unwrap Title from Feature Image’ is closed to new replies.