Page 1 of 1
Need to add space in Categories box
Posted: Mon Apr 12, 2010 12:35 am
by cartos
Hi
i managed to add space between items in Information box, now i need to do the same thing in Categories box.
Any idea how to do it?
thanx
Re: Need to add space in Categories box
Posted: Mon Apr 12, 2010 2:07 am
by rph
In /catalog/view/theme/[theme]/template/style/stylesheet.css add:
Code: Select all
#category li {
margin-bottom: 15px;
}
Re: Need to add space in Categories box
Posted: Mon Apr 12, 2010 3:09 pm
by cartos
rph wrote:In /catalog/view/theme/[theme]/template/style/stylesheet.css add:
Code: Select all
#category li {
margin-bottom: 15px;
}
OK thanx , it creates space between catagories and even between subcatogories, but i will also need space between category and 1st subcategory, any idea what to add to stylesheet.css this time?
thanx
Re: Need to add space in Categories box
Posted: Mon Apr 12, 2010 4:59 pm
by gxpratama
Hey cartos, ever heard Firefox's plugin Firebug? Use that to find out any item with its corresponding CSS class/id. It'll make it far easier to make such changes..
Re: Need to add space in Categories box
Posted: Tue Apr 13, 2010 9:52 pm
by rph
Replace the code above with:
Code: Select all
#category li {
margin-top: 15px;
}