If I want the entire left column on all page to be a solid color, how would I change that?
I thought it was the /template_default/common/tpl_mainpage.php.
I made the change on the left side table but nothing happened.
Thanks for any help!
If I want the entire left column on all page to be a solid color, how would I change that?
I thought it was the /template_default/common/tpl_mainpage.php.
I made the change on the left side table but nothing happened.
Thanks for any help!
No, that would be in your stylesheet. In includes/templates/YOUR_TEMPLATE/css/stylesheet.css, look for
and change the background-color to what you want.Code:.sideBoxContent { background-color: #ffffff; padding: 0.4em; }
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey
The previous reply will get you to change the background of the side boxes. If I understand your querry, you want to change the whole column to another color. You might find in you CSS file
#navColumnOne {
}
Inset in there the following: background:#CCCCCC Make sure you enter your own colour code here.
Thanks
E. Dravie
http://www.waytodoit.co.uk
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey
I created the css navColumnTwo with white background and it works.
Thanks!
Last edited by [email protected]; 30 Jan 2007 at 07:49 PM.
I was just going to ask if your style sheet looked like this
and if it did, I was going to suggest you change it to:Code:#navColumnOne, #navColumnTwo { background-color: #990000; }
You got there before me.Code:#navColumnOne { background-color: #000000; #navColumnTwo { background-color: #ffffff; }![]()
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey