How to fix sidebar in thesis?

Vildbas

New Member
Hi!

I'm working with a wordpress theme called Thesis. I've tumbled on a problem with the content in the sidebar. Normally all the sidebar content gets placed at the top but now everything is positioned below the main content in the main section.

What can the problem be?

The site:

Howtoprint3d.com
 

ronaldroe

Super Moderator
Staff member
In the CSS, the width is set using em. It's causing the width of the 2 columns to become more than the width of their parent container. Because em is relative based on font size, this was likely caused by a change in font size. You can change to percentages to keep things under control. Here's a page with more info about em: http://css-tricks.com/css-font-size/
 

Vildbas

New Member
In the CSS, the width is set using em. It's causing the width of the 2 columns to become more than the width of their parent container. Because em is relative based on font size, this was likely caused by a change in font size. You can change to percentages to keep things under control. Here's a page with more info about em: http://css-tricks.com/css-font-size/

I havent changed it to use em. In thesis, the font-size are described as "pt". I've tried to change width if content and sidebar to both biiger and smaller sizes, but the same error occurs... Any more suggestions?

Tnx for reply btw!
 

Edge

Member
Line 36 of layout.css change to:
#sidebars {
border: 0 none;
float: left;
width: 22em;
}
 

Vildbas

New Member
Thanks, but it didnt work... I tried to put in the code but nothing happend (I used "Thesis Custom File editor" which overwrites the old code). Any more suggestions?
 
Top