Change Header Image and Post Width for Canard

  • Unknown's avatar

    Hi,

    Could you guys, please, help me figure out how to change the post width (would like to get rid of the huge chunk of white space left of the text) and make the header image wider, too (it doesn’t cover the whole page like the featured image for a post does).

    Thanks!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    Try adding the following snippet to the CSS panel of the WordPress.com Customizer:

    @media screen and (min-width: 1380px) {
        .entry-footer, .footer-widget-inner .widget, div#jp-relatedposts, .single .entry-content, .comments-area {
            width: 100%;
        }
    }
    
    @media screen and (min-width: 960px) {
        .comments-area {
            margin-right: 0;
        }
    }

    The above should widen the content area on single posts and bring the meta information that’s currently in the left sidebar down to the footer area.

    The following will then increase the width of your header image to 100%:

    .header-image-inner {
        width: 100%;
    }

    Let me know how the above works out for you. :)

  • Unknown's avatar

    It worked! Thanks very much :)

  • Unknown's avatar

    Yay! We’re right here if anything else comes up, too.

  • The topic ‘Change Header Image and Post Width for Canard’ is closed to new replies.