user1897748
user1897748

Reputation:

How to change the width of the left menu in Joomla (Beez20)

How can I change the width of the left menu that comes with Beez20 template in Joomla 2.5?

Upvotes: 0

Views: 2251

Answers (2)

Bakual
Bakual

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

user1897748
user1897748

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

Related Questions