Please go to www.bigjmart.com, then look at the categories (on the homepage).
I want the background white, not grey.
How do I do this?
Thanks.
In skins/your-skin/customer/dropdown.css
On line 138 you have:
ul.dropdown .dir {
background:url("images/icons/category_collapsed.gif") no-repeat scroll 97% 5px #F0F2F2 !important;
border-top:1px solid #F6FBFC;
}
Just change it to:
ul.dropdown .dir {
background:url("images/icons/category_collapsed.gif") no-repeat scroll 97% 5px #FFFFFF !important;
border-top:1px solid #F6FBFC;
}
Download Firebug for Firefox, it will really help you. This took like 5 seconds for me to look at using Firebug.
Brandon