you can make the label a link in Languages ie:
Photography
but you might want to make the <a> tag a css class and make the visited link the same colour as the link itself.
eg:
Photography
Code:
.yourlink A:link {
COLOR: #081589; TEXT-DECORATION: none;
}
.yourlink A:visited {
COLOR: #081589; TEXT-DECORATION: none;
}
.yourlink A:hover {
COLOR: #FF0000; TEXT-DECORATION: underline;
}
.yourlink A:active {
COLOR: #081589; TEXT-DECORATION: none;
}
FYI x-cart uses skin1.css in the root of skin1
vixnfox