Homepage › Community Forums › Aspire Theme Support › Layout adjustments › Reply To: Layout adjustments
The main width of the theme is 1140px.
The content area at the moment is 700px and the sidebar is 360px. There’s also a tiny bit of spacing in between since one is floating to the left and the other to the right. The more you increase one of those divs, the more the gap closes. If you increase the left, it gets closer to the right….(same thing for the right to the left).
If you added 800px to the content area then that would exceed 1140px. Anytime 2 divs become too wide for the width they are contained in, one of those divs will fall off the side and under the other.
When increasing one of the divs, you have to calculate to make sure they both fit and don’t exceed the main width. You can still increase it, just make sure it’s not too much or else you’ll need to adjust the other div.
The content div/section can be found on line 700 in your style.css –
/* ### Content */
.content {
float: right;
width: 780px;
}
The sidebar div/section is on line 723 –
/* ### Primary Sidebar */
.sidebar-primary {
float: right;
width: 360px;
}
I’m not sure what you’re referring to in Question #2, but it sounds like the above suggestion may help or have something to do with the solution? My suggestions above focuses on the width of both the content and sidebar width, so hopefully that helps.
Question #3: Are you referring to Line Height? The space between each line? Or the space between each Paragraph? Those are 2 different things so let me know if you’re referring to one of those.
