PDA

View Full Version : Change bg color


affiliateboy
11-10-2006, 05:59 AM
Can you tell me how to change bg color from gey to white in the "link-display.tpl" and the "view-link.tpl". I am using the Aqua template v 2.0. Thanks.

WTM
11-10-2006, 06:25 AM
Find this style in the templates/Aqua/css/style.css filediv.box-content
{
border-top: 1px solid #C0C3BD;
padding: 10px;
background-color: #E1E1E1;
}
To remove dark line on top - remove first line: border-top: 1px solid #C0C3BD;
To change background color to white you can remove bottom line: background-color: #E1E1E1;
or just change the color like this: background-color: #fff;

affiliateboy
11-11-2006, 05:30 AM
Thanks for the great support!