- This topic has 8 replies, 3 voices, and was last updated 4 years, 2 months ago by .
Viewing 9 posts - 1 through 9 (of 9 total)
Viewing 9 posts - 1 through 9 (of 9 total)
- You must be logged in to reply to this topic.
Support › Forums › Flex Theme › Content Width
Tagged: WIDTH OF CONTENT
Heya guys,
Is there a way to make the width of the content wider? I have loads of white space on the sides and I’d like the content space to be wider (I have very long and detailed blog posts)
Thanks.
You will modify the CSS. Are you wanting this for particular pages? Can you share the site URL?
Thanks I wanted it for all of the pages and posts.
http://www.chasingthedonkey.com/tailwind-pinterest-blogging-tips/
Replace
.wrap {
margin: 0 auto;
max-width: 1140px;
padding: 0 30px;
}
WITH
.wrap {
margin: 0 auto;
max-width: 1280px;
padding: 0 30px;
}
==========================
Replace
.content, .home-bottom-left {
float: right;
width: 693px;
}
WITH
.content, .home-bottom-left {
float: right;
width: 820px;
}
Thanks.
I did that, but nothing changed.
Did you clear the cache as your website source code is still showing wrap with 1140px width.
Yes, and I just did it again. That’s odd, I looked and I did change that code.
Some issue with your cache clearing. I still see old CSS with wrap set at 1140px.
Okay thanks, I have cleared it again. I guess it just won’t work. Thanks for your help anyway.