views:

31

answers:

2

I want the wordpress sidebars got an specific height, NOT equal to the content to the post/page. Just 400px, for example. I`m working with atahualpa. Which code in wich php i got to hack? Thanks

A: 

No php, do it in your theme's css file.

hollsk
+2  A: 

If I understand you correctly, you are going to want to edit a relevant CSS file--nothing more.

Figure out which selector is appropriate for the container you want to limit and add the attributes:

height: 400px;
overflow: hidden;

Or overflow: auto; If you want scrollbars to appear.

Fletcher Moore