• Resolved bettinamelher

    (@bettinamelher)


    Hello again,

    I need some help with my blog / posts and the way the image appears next to the post summary.

    The site is: bettinamelher.com

    1. I would like the featured image to appear to the left of the text (the way it is in the Argent theme demo).

    2. Once the blog post is clicked, the title and featured image are huge. Is there a way of making it smaller?

    3. At the bottom, where it says “Leave a Reply”, the button to submit the comment is visible, but the text is not. I’ve searched the CSS style sheet to try and find where I can change this but I’ve had no luck. I also have the same problem with the button under the “CONTACT” page.

    Sorry for these basic questions, but I’ve spend days on this now and am still stuck. Any help is greatly appreciated. ??

    Thank you so much.

    Bettina

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Bettina,

    1. I would like the featured image to appear to the left of the text

    Sure, add this to your Appearance > Customize > Additional CSS area:

    /* Move Featured Imaages to the Left on Blog Page */
    
    .entry-header {
        display: inline;
    }

    Once the blog post is clicked, the title and featured image are huge. Is there a way of making it smaller?

    Yep, use this, and change the 50% number up or down to your liking. At 50%, it makes them half their size.

    /* Make Featured Images On The Post View Smaller */
    
    .single .entry-header + img {
        max-width: 50%;
    }

    You can use this for the comment/contact form buttons:

    /* Change Comment and Contact Form Button Text Color */
    
    input[type="submit"]{
        color: #fff;
    }
    Thread Starter bettinamelher

    (@bettinamelher)

    Hi David,

    Thank you so much! ?? I added the additional CSS and it all worked perfectly. So happy with my new website.

    Thanks again for your help! I really appreciate it.

    Bettina

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blog Posts – appearance of image’ is closed to new replies.