Page 1 of 1

How to change size of "Categories" box 1.5.1.3

Posted: Sat Mar 03, 2012 8:49 pm
by miamba
Hi there,

Please forgive if this has been posted before, but I can only seem to find results for the "box category". I'm trying to realign the "Categories" box on a custom template. It's out of whack with the margin as you can see here:

http://miamba.co.uk/index.php?route=pro ... ry&path=25

Been trawling website back end and css stylesheet as that's where most people seem to be directed for font size changes. Either I'm missing something or looking in wrong place, so any help would be v. appreciated.

Thanks,

Lis

Re: How to change size of "Categories" box 1.5.1.3

Posted: Sat Mar 03, 2012 9:06 pm
by george_o
If you want to move the category box to the left, go to stylesheet.css, find this

Code: Select all

.box {
    margin-bottom: 20px;
}
and add a margin-left attribute

Code: Select all

.box {
    margin-bottom: 20px;
    margin-left: 5px;
}

Re: How to change size of "Categories" box 1.5.1.3

Posted: Sat Mar 03, 2012 9:44 pm
by miamba
Worked instantly. Thanks so much for your help :)