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)
-   -   Font color change? (https://forum.x-cart.com/showthread.php?t=39996)

Otis 05-23-2008 04:08 PM

Font color change?
 
Ok...i know thsi sould very elementary but i am a newb with xcart and i got to start somewhere...

i set up the shop and i just noticed that the "Click here to regiester" text in the register dialog box is the same color as the background and thus invisible. the link is there but the color is the same...i looked in the source of the p[age and this is the code:
<center>
<font class="FLC_Register">New customer? <a href="#regdlg" onclick="javascript: document.getElementById('reg_dlg').style.display = (document.getElementById('reg_dlg').style.display == '') ? 'none' : '';">Click here to register</a></font>
</center>now the FLC_register class is a basically black...

so if anyone knows why this font is the same as the background please help this newb...

the cart is here: http://www.plumeriaparadise.com/plumeria/cart.php?mode=checkout

thanks

Otis

gb2world 05-23-2008 09:36 PM

Re: Font color change?
 
Your best bet for tracing CSS code is to use Firefox with the firebug addon - with this tool - you can inspect the page and will be directed to the CSS that is being applied.

It looks like this is the light color that is being applied to the text that is the same color as the background:
Code:

a:hover {skin1.css (line 18)
color:#FFFBF1;
text-decoration:underline;
}

a:link {skin1.css (line 10)
color:#FFFBF1;
text-decoration:none;
}


The color being applied to your link is almost the same as the white background


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

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