Hi, yes that’s possible with CSS tweak. Go to “Appearance > Customize > CSS” and drop below code
.home .entry:first-child,
.blog .entry:first-child {
font-size: 130%;
}
Thread Starter
BtA_M
(@bta_m)
Thanks a lot!
Unfortunately it didn’t work out. Latest post (and image) has still same size
Thread Starter
BtA_M
(@bta_m)
i figured it out, this code enlarges the images (all images) not only the image of the
latest post:
embed,
iframe,
img,
object,
video {
max-width: 150%;
}
Thread Starter
BtA_M
(@bta_m)
hi
I have another question concerning my issue, to post the latest (first) post differently than the following.
the mentioned code was great thanks @themehall. Just changed it a little.
.home .entry:first-child,
.blog .entry:first-child {width: 900px;}
unfortunately it applies on every first post of a page.
how can i make it only apply on the FrontPage, that it will not affect the following pages?
thx a lot for help
Can you post your site URL?
Thread Starter
BtA_M
(@bta_m)
I see your site and the code only apply on the frontpage. I don’t see it affect other pages. Can you post the affected pages?
Thread Starter
BtA_M
(@bta_m)
hi,
you can see the first post on the second page, the pic is large too.
http://www.boomtownavenue.com/page/2/
thanks for your help!
try to add .home.paged to reset the width back to normal.
.home .entry:first-child,
.blog .entry:first-child {
font-size: 130%;
}
.home.paged .entry:first-child {
width: 100%;
}
Thread Starter
BtA_M
(@bta_m)
unfortunately it did not work out.
i also tried to only set the px. it’s still not back to normal.
the css for the first post on frontage, is it the .home.paged?
Thread Starter
BtA_M
(@bta_m)
i found out something that seems to work. i removed the .home .entry:first-child
just going with this:
.home.paged .entry:first-child {
width: 100%;
}
.blog .entry:first-child {width: 980px;
}
thanks for your input! I’ll be testing it and let you know π