Tagged: content
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.
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
This work perfectly! How can I reduce the featured image size? Currently, its shown bigger than the real picture size.
thanks!
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