hello,
I was wondering if there a way to have a header background color for only the "blank side box" and the "search side box"
if so, which file should i edit and what should i add ???
thank you for all your help
www.thepurseworld.com
hello,
I was wondering if there a way to have a header background color for only the "blank side box" and the "search side box"
if so, which file should i edit and what should i add ???
thank you for all your help
www.thepurseworld.com
Add to your stylesheetAdjust to taste. If you want them different colors, separate them into two declarations.Code:#blanksideboxHeading, #searchHeading { margin-left: 7px; background-color: #aabbcc; }
thanks, that worked.
but how can i fix the "search" word to not appear the way it is right now in firefox. (it's like it's stuck to the floor)
You have added a specification for the heading to be that size, so Firefox is only doing what you told it to do.Delete the height property and it will show correctly:Code:#searchHeading { margin-left: 20px; background-color: #CCCCFF; height:10px;Code:#searchHeading { margin-left: 20px; background-color: #CCCCFF; }