Page 1 of 1

background-color of the whole menu bar

Posted: Wed Sep 06, 2006 11:03 am
by turnbeutel85
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

Re: background-color of the whole menu bar

Posted: Wed Sep 06, 2006 5:02 pm
by Dr.CSS
div#content {background-color: #f20000;

then you have to set the #main{background-color: #fff;  to give it a white background....

Re: background-color of the whole menu bar

Posted: Wed Sep 06, 2006 5:12 pm
by turnbeutel85
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

Re: background-color of the whole menu bar

Posted: Wed Sep 06, 2006 5:22 pm
by Dr.CSS
Try this...

    div#main {
        float: right;
      width: 76%;
        margin-right: 0;
        padding-right:2%;
        padding-left:10px;

        display: inline;
        background-color: #ffffff;
    }

Re: background-color of the whole menu bar

Posted: Fri Sep 08, 2006 7:14 pm
by turnbeutel85
thanks!!!