• Resolved joo77

    (@joo77)


    Hi, how do I reduce the featured image size on the blog roll which is also my homepage? I find it much too big right now.
    Thanks!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    You can adjust the size like this:

    .post-image img {
        max-width: 100px;
    }

    You can also align it to the left or right:

    .post-image {
        float: left;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    Or:

    .post-image {
        float: right;
        margin-left: 30px;
        margin-bottom: 30px;
    }

    Hope this helps ??

    Thread Starter joo77

    (@joo77)

    Hi Tom,

    Yes, this is EXACTLY what I needed, with the alignment too! You knew my next question even before I asked.

    Thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘reduce thumbnail image size on blog roll’ is closed to new replies.