hello,
please have a look at my cms: http://www.tvhude.de/tt/cms/
on the left side are the menu elements: 13 red buttons. the background below the menu elements is white. ii it possible to color it in red as well? i already had a look in all CSS-Styles, but i couldn´t find it. how can i change the background-color for the menu bar?
thanks a lot!
greets turnbeutel85
background-color of the whole menu bar
Re: background-color of the whole menu bar
div#content {background-color: #f20000;
then you have to set the #main{background-color: #fff; to give it a white background....
then you have to set the #main{background-color: #fff; to give it a white background....
Re: background-color of the whole menu bar
ok thanks. but now there is a red stripe on the right side as well. is it possible to get it white without setting left-margin to zero?
-> www.tvhude.de/tt/cms
-> www.tvhude.de/tt/cms
Re: background-color of the whole menu bar
Try this...
div#main {
float: right;
width: 76%;
margin-right: 0;
padding-right:2%;
padding-left:10px;
display: inline;
background-color: #ffffff;
}
div#main {
float: right;
width: 76%;
margin-right: 0;
padding-right:2%;
padding-left:10px;
display: inline;
background-color: #ffffff;
}