cant change text color cant change text color
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

cant change text color

Started by TheMacOS.com, June 11, 2004, 08:10:19 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

TheMacOS.com

http://www.themacos.com/gallery

in template.html, I added some text links at the top. but they  are orange. I've tried changing the color, with no luck. why wont they change? very odd.

Casper

The links are defaulting to the link class specified in the css.  You can specify them to a different class, or even add a new one in the css.
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

TheMacOS.com

thanks for the quick reply. :)

I know little html. don't know a thing about css.

I tried editing the hex for the color in H3... in the css file. #000000 for black text. didn't work. guess I did something wrong. it's still orange. :(

Casper

Try changing this;
<font size="-1" color="white"><a href="http://www.themacos.com">Main Home</a> | <a href="http://www.themacos.com/gallery">Gallery Home</a> | <a href="http://www.themacos.com/forums">Forums Home</a></font>


To this;
<span class="catlink">"><a href="http://www.themacos.com">Main Home</a> | <a href="http://www.themacos.com/gallery">Gallery Home</a> | <a href="http://www.themacos.com/forums">Forums Home</a></span>
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

TheMacOS.com

tried that code, it didnt like that.

Casper

Oops, just spotted I made an error in the code.

Try this
<span class="catlink"><a href="http://www.themacos.com">Main Home</a> | <a href="http://www.themacos.com/gallery">Gallery Home</a> | <a href="http://www.themacos.com/forums">Forums Home</a></span>
Quote
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

TheMacOS.com

close, but it still looks weird. :/ messes the images up or something. ?  ???

Casper

OK, remove the <span class="catlink">, and the <span>

Now find the '<div align="left">' just before the code, and change it to '<div class="catlink" align="left">
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here