• Resolved BtA_M

    (@bta_m)


    hi,

    Thanks for creating such a great theme! I’m thinking of changeing my site to the Omega theme. Is there a possibility to Display the most recent post larger (under menu, without sidebar) than the following Posts?

    Thanks for your help!

Viewing 11 replies - 1 through 11 (of 11 total)
  • 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.

    https://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 ??

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Most recent post larger than other’ is closed to new replies.