Big Al Ruby Newbie
Big Al Ruby Newbie

Reputation: 834

Override jQuery Tabs CSS

I have overridden something in the past and made it important in the CSS. (Long time ago)

black hover color in jQuery tabs

It wasn't a problem at the time, but now it is overriding the hover over color of active and inactive tabs (Yellow Arrow) to Black.

I need to get the color back to the original color.

Also I put in a data table in and used CSS positioning to move it

top: -40px 

Where can I do the bottom: -40px in the tab window (Green Arrow)?

live site at http://www.loadmax.com/classics

Upvotes: 1

Views: 126

Answers (1)

Alexis Wilke
Alexis Wilke

Reputation: 20731

It loads a CSS from this one file:

http://www.loadmax.com/assets/application-dccd11e61e21d60b4ecb60c0b2022ce7.css

And that includes the following CSS on line 57 and following:

a:hover
{
    background-color: #000000;
    color: #666666;
}

From what Firebug shows me, that's your culprit. No !important anywhere.

Upvotes: 1

Related Questions