X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   A little CSS help please (https://forum.x-cart.com/showthread.php?t=37858)

toolexperts 02-26-2008 07:57 AM

A little CSS help please
 
Hey guys, I have been modding away thanks to your help!

I am having an issue however on my home page at 216.75.30.97 I cannot for the life of me figure out what line of my css code will make my categories names in the center section visible, they appear on hover but not statically, is there any way to do this? Also I'd love for it to say how many products are in that department.

Any help will be greatly appreciated:D

kube 02-26-2008 08:09 AM

Re: A little CSS help please
 
Hi toolexperts,

These are the ones I think, although at a quick glance I can't see why it's coming up as a black link on hover...

perhaps change .VertMenuItems & .VertMenuItems A to... (should come up green)

.VertMenuItems {
color:#00FF00; /* the color before was white #FFF*/
text-decoration:none;
}
.VertMenuItems a {
color:#00FF00; /* the color before was white #FFF*/
text-decoration:none;
}

Edit: oops I got that completely wrong, sorry. Photo is the man!

photo 02-26-2008 08:21 AM

Re: A little CSS help please
 
Quote:

Originally Posted by toolexperts
Hey guys, I have been modding away thanks to your help!

I am having an issue however on my home page at 216.75.30.97 I cannot for the life of me figure out what line of my css code will make my categories names in the center section visible, they appear on hover but not statically, is there any way to do this? Also I'd love for it to say how many products are in that department.

Any help will be greatly appreciated:D


Try adding this to your skin1/skin1.css file,

Code:

.PListCell a:link  {
    color:#000
}
.PListCell a:visited {
    COLOR: #000;
}
.PListCell a:hover {
    COLOR: #000;
}
.PListCell a:active  {
    COLOR: #000;
}


Change colours to your liking.

toolexperts 02-26-2008 08:34 AM

Re: A little CSS help please
 
Kube...once again man you rock!!! I put it in and whammo it's working!!!

toolexperts 02-26-2008 08:36 AM

Re: A little CSS help please
 
i tried yours photo...it didn't work :(

kube 02-26-2008 08:59 AM

Re: A little CSS help please
 
huh?! Photo's should have worked.

Maybe it should be more specific like...

.PListCell a.VertMenuItems:link {
COLOR: #00FF00;
}
.PListCell a.VertMenuItems:visited {
COLOR: #00FF00;
}
.PListCell a.VertMenuItems:hover {
COLOR: #00FF00;
}
.PListCell .aVertMenuItems:active {
COLOR: #00FF00;
}

toolexperts 02-26-2008 09:10 AM

Re: A little CSS help please
 
that's it...ok it's looking good now thanks!!!


All times are GMT -8. The time now is 05:21 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.