Template Border color change

Gantz

New Member
Hello, I know this is a newb question but what the heck!

I'm trying to change my border color to a lighter color on my forum. I'm just not sure which style options to edit on my template.

check out the image to see what I mean... right now its black as you can see, I want to change that to a different color once I actually find the option to change it.

thanks for the help.
 
AdminCP>>>Styles & Templates>>>style manager>>>Table border

and change to what you want.

If you add this code in the additional css box you can change the colors to the top, bottom, left and right sides!
PHP:
border-top: 1px solid #FFFFFF;
border-left: 1px solid #FFFFFF;
border-right: 1px solid #FFFFFF;
border-bottom: 1px solid #FFFFFF;
Simply change the border width and colors to your choice.
 
Back
Top