PDA

View Full Version : Template changes


tokyotokyo
12-05-2005, 04:44 AM
Hi Simon & All,

I have a few changes I want to make with my template. I need some help if you can......

First, my site is at http://cell-phones.best-sites.biz


I want to change the spacing for the categories display. Since I wont be using subcategories, I want to close the vertical spacing between categories. like the space of a
or a

. Is this possible? If so, what do I need to do?

Finally, I want to change the category and link display text box color and text from orange to blue like the header box. What do I need to do this?

Thanks Simon and to all that can help me :D

Carl

Simon Gooffin
12-05-2005, 05:42 AM
Hi Carl,

I want to change the spacing for the categories display. Since I wont be using subcategories, I want to close the vertical spacing between categories. like the space of a
or a

. Is this possible? If so, what do I need to do?

sure you can do this. All you should do is to modify your css file. I tried to do the following changes and they look fine:
div.categories div.col
{
float: left;
height: 40px;
text-align: left;
width: 170px;
}
div.categories div.last
{
float: left;
height: 40px;
text-align: left;
width: 170px;
}

TO change the color of your links you should make changes in the same css file:

div.categories a
{
color: #1D78A1;
font-weight: bold;
}

Let me know if you have any other troubles