Skip to content Skip to sidebar Skip to footer

Add Background Color From Logo To Menu Using Css

please go through below link : http://2.kidsdial.com/customer/account/login and login with this email id : kidsdial2@gmail.com & password : kidsdial2 than please check this : h

Solution 1:

you can test these CSS rules

#horizontalmenu.mymenu > li {
    height: 32px;
    line-height: 32px;
    width: 100px;
}
#main_header.header-container.header {
    background-color: #ffff00;
}
#horizontalmenu{
    margin-top: -5px;
}

Solution 2:

I would remove .bkg_header_bottom from:

.adapt-0.em-box-custom.bkg_header_bottom, .em-box-custom.container_header, .bkg_header_bottom{
    background-color:#fff!important;
}

and possibly remove the color here as well so you aren't duplicating code:

.adapt-0.em-box-custom.bkg_header_bottom, .em-box-custom.container_header, .bkg_header_bottom {
    background-color: #3fbdf7;
    background-image: url(../images/stripes/blank.gif);
    background-position: 00;
    background-repeat: repeat;
    color: #FFFFFF;
    clear: both;
}

Add the background color you want here, this class contain both elements you want colored:

.page.one-column{
    background-color: #3fbdf7;
}

Post a Comment for "Add Background Color From Logo To Menu Using Css"