hello
quick question
how can i make the background transparent for the top toolbar menu, and the left column in a stylesheet?
thanks
hello
quick question
how can i make the background transparent for the top toolbar menu, and the left column in a stylesheet?
thanks
Tough to take a stab in the Dark (Ozzy Osborne), but a link is great to work with
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
www.thepureworld.com
sorry about that forgot to add the link
basically on the top toolbar, where it says "customer Service" "Log in"
and where it says "department" if i can have those backgrounds to be transparent.. not white.. and no image
thanks
The link is not working:
includes/ templates/ your_template/ css/ stylesheet.css
Find the following declaration in the .css
Need a working link for the next question
- navMainWrapper
- you will probable notice it is associated with two other declarations
- Seperate it out and add to the sheet
- Copy and paste the declarations
- Add it right below
- Then go up and delete #navMainWrapper
- Go below and change background to:
- background: transparent;
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
www.thepurseworld.com
can;t type![]()
includes/ templates/ your_own_template/ css/ stylesheet.cssbasically on the top toolbar, where it says "customer Service" "Log in"
and where it says "department" if i can have those backgrounds to be transparent.. not white.. and no image
Find the following:
#navMainWrapper, #navCatTabsWrapper {
background-color:#FFFFFF;
background-image:url(../images/nav_cat_bg.jpg);
background-repeat:no-repeat;
color:#FFFFFF;
font-weight:bold;
height:30px;
margin:0em 0em 0px;
padding:0px;
}
Find the following in the .css
- Change to this:
- #navCatTabsWrapper {
background-color:#FFFFFF;
background-image:url(../images/nav_cat_bg.jpg);
background-repeat:no-repeat;
color:#FFFFFF;
font-weight:bold;
height:30px;
margin:0em 0em 0em;
padding:0px;
}- Notice the red font above was changed.
- Then add right below this the new declaration which was seperated from the top one
- #navMainWrapper {
background-color:#FFFFFF;
background-image: transparent;
background-repeat:no-repeat;
color:#FFFFFF;
font-weight:bold;
height:30px;
margin:0em 0em 0em;
padding:0px;
}- Notice the red font above was changed..
- h3.leftBoxHeading, h3.leftBoxHeading a {stylesheet.css (line 525)
background-color:#FFFFFF;
background-image:url(../images/category_header.jpg);
background-repeat:no-repeat;
color:#000000;
font-size:1em;
height:26px;
}- Change to this:
- h3.leftBoxHeading, h3.leftBoxHeading a {
background-color:#FFFFFF;
background-image: transparent;
background-repeat:no-repeat;
color:#000000;
font-size:1em;
height:26px;
}- Notice the red font above was changed..
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
PERFECT .. thanks a lot !!! I will apply it today!![]()