Reputation:
How can I change the width of the left menu that comes with Beez20 template in Joomla 2.5?
Upvotes: 0
Views: 2251
Reputation: 2731
#wrapper2
{
width: 50%;
float:left;
position:relative;
padding-bottom:20px
}
in the same file is probably what you also need to adjust. Using Firebug or the included development tools within a browser can tell you more here.
Upvotes: 0
Reputation:
This can be done by editing the /templates/beez5/css/position.css
file.
Find
.leftbigger
{
width:15%
}
And edit the width:15%
Upvotes: 1