Archived topic
latest post width 100%
6 replies · Started by Torsten on March 12, 2021
Hi,
I've set the startpage to latest posts and in → Customizer → Layout → Blog
→ Display posts in (4) columns
→ Make first post featured
I would like the first post to cover always (Desktop, Tablet, Mobile) the full width of the page.
For now on desktop it's covering a width of only 2 blocks, on Tablet 1 block out of 2.
Is this possible?
Thanks ahead,
Torsten
deleted "another question".
Hi there,
try this CSS:
.generate-columns-container .generate-columns.featured-column {
width: 100%;
}
lovely!
one more, concerning the spacing on the startpage between image caption and text.
How can I reduce that spacing?
Thx ahead,
Torsten
Try this CSS:
.wp-caption.thumb-caption,
.wp-caption.thumb-caption .wp-caption-text{
margin-bottom: 0em;
}
.post-image + .entry-summary>p:last-child {
margin-top: 10px;
}
Top!
Thanks a lot, have a nice weekend,
Torsten
You're welcome