Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #947431

    Hi,

    I want to put my content wider instead of being centered like this is. For my pages, everything is fine, the text takes all the space like you can see on my homepage but for my posts, this is different, the text is centered and the readability is really poor.

    #947613

    Hey igaudette,
    Try this code in the General Styling > Quick CSS field:

    #top .fullsize .template-blog .post .entry-content-wrapper > *, #top .fullsize .template-blog .post .entry-content-wrapper { 
    max-width: 100%!important; 
    }

    Best regards,
    Mike

    #948205

    This work perfectly! How can I reduce the featured image size? Currently, its shown bigger than the real picture size.

    thanks!

    #948246

    Hi,
    The element is tied to the width of the page, so just as the text wants to fill the area, so dose the image.
    I could see the natural width of the image was 850px so I wrote this css to make that the max-width. I was unsure if this change would be for this one page, so this css is for the one page:

    #top.postid-950 .big-preview.single-big {
        max-width: 850px !important; 
        margin: auto !important; 
    }

    Use this css for all single posts:

    #top.single-post .big-preview.single-big {
        max-width: 850px !important; 
        margin: auto !important; 
    }

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.