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)
-   -   Firefox not displaying correctly (https://forum.x-cart.com/showthread.php?t=47073)

buyfroma 04-21-2009 06:59 AM

Firefox not displaying correctly
 
I'm trying to modify the main.css to change the link, visited, hover and active selectors for the search-sort-bar. By default they take the style of each of those selectors specified for the main site since not styles are specifically specified for the search-sort-bar.

Here is the default unmodified code:

a.search-sort-link:link,
a.search-sort-link:visited,
a.search-sort-link:hover,
a.search-sort-link:active

Here is the code modified by me:
a.search-sort-link:link {color: #ffffff},
a.search-sort-link:visited {color: #ffffff},
a.search-sort-link:hover {color: #000033},
a.search-sort-link:active {color: #ffffff}

It displays 100% correct in IE, but Firefox still inherits the site colors specified at the top of the main.css.

Any ideas on how to get Firefox to display it correctly or any errors in my code? Thanks in advance!

buyfroma 04-21-2009 12:38 PM

Re: Firefox not displaying correctly
 
Figured it out. Not sure why, but had to specify text-decoration on each line too to get it to stick in Firefox.

for example:

a.search-sort-link:hover{
text-decoration: none;
color: #cccccc;
}

retrtrtrytrutru 04-22-2009 06:40 AM

Re: Firefox not displaying correctly
 
Quote:

Originally Posted by buyfroma
Not sure why

In the first example you posted, the color codes were not closed by ";". This makes the CSS statement invalid. If you had done it like so, for example:

HTML Code:

a.search-sort-link:link, a.search-sort-link:visited, a.search-sort-link:active
{
    color: #FFF;
text-decoration: underline;
}
a.search-sort-link:hover
{
    color: #000033;
}

it would probably have worked. In your second example you have correctly closed the statement (every CSS statement has to be closed by ";").


All times are GMT -8. The time now is 11:58 PM.

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