1
I'm trying to customize the color of the Navbar at the top of the Agenda-X module. I've tried several ways but I can't seem to get it to ignore the default a: settings in the theme css. I tried editing the theme css and agenda-x's css as follows:
Agenda-X CSS:
Original:
Quote:
div.axNavbar {background-color : #000000}
To:
Quote:
div.axNavbar {
background-color : #000000;
a.axNavbar:link : color: #FFFFFF;
a.axNavbar:visited : color: #FFFFFF;
a.axNavbar:active : text-transform: capitalize; color: #FF0000;
a.axNavbar:hover : text-transform: capitalize; color: #00CC00;
}
I've also tried "a.div.axNavbar" in all places.
In my theme CSS I put:
Quote:
a.div.axNavbar:link {color: #FFFFFF}
a.div.axNavbar:visited {color: #FFFFFF}
a.div.axNavbar:active {text-transform: capitalize; color: #FF0000}
a.div.axNavbar:hover {text-transform: capitalize; color: #00CC00}
However XOOPS still shows the links with the default colors, is there any way to change these links without affecting the rest of the site?
Chris