easypcs:
Jade, thank you very much for them annoying fixed to my cats:thumbsup:
Could I ask how the right column is increased in size, I have altered them from 150 in admin but nothing happens.
I have tried changing this in css but big changes to center:cry:
#navColumnTwo, #navColumnOne {
float:right;
position:relative;
width:20%;
Also this to match:
#centerColumnWrapper2{
background:url(../images/content_bg.gif) repeat-y 80% 0;
If the design isnt meant to do this no probs just would like to have category counts on.
Thx again Jade much appreciated.
Ok, this is doable, but it gets a tad complicated.
So, you can change #navColumnTwo, #navColumnOne to:
#navColumnTwo, #navColumnOne {
float:right;
position:relative;
width:25%;
The you'd need to decrease the width of .centerColumn to 5% LESS, so change it from 73% to 68%.
Then, you'd need to adjust the image. Right now, 20% of the image is gray, 80% is white. If you want the categories to take up 25%, then 25% of the image needs to be gray, 75% white.
Then after editing the image, you'd change #centerColumnWrapper2 to this:
#centerColumnWrapper2{
background:url(../images/content_bg.gif) repeat-y 75% 0;
HTH!