For Neopets ONLY discussion.
Topic locked

I'm such a dope when it comes to coding...

Tue Nov 30, 2004 2:55 am

How do you make the ugleh yellow stats box on your pet's lookup turn white? Hmm... blue does NOT look good on ugly yellow.

Tue Nov 30, 2004 5:19 am

This is the code:

<style type="text/css">
td {background: transparent}
</style>


That should work. :)

Tue Nov 30, 2004 1:51 pm

:D Yes, it works. Thank you!

Alrighty, now I have another question. How do you make it, on a pet lookup, to where the bold text is one color, and the regular text is another?

For an example, look up Zopel on Neopets. Click on the Faerie Kacheek.

MindyEdit: I combined your posts for you. Please use the edit button instead of double posting. Thanks. :)

Wed Dec 01, 2004 6:19 pm

The source says:

<style TYPE="text/css">
body,td {background:white; cursor:crosshair;}
A,TD,P,FONT{COLOR:black; FONT-SIZE: 7.5pt;font-family:tahoma;color:gold;}
a:hover{color:white;cursor:crosshair;}
B{height:1px; color:darkorange; font-family:tahoma; filter:Alpha(Opacity=100, FinishOpacity=40, Style=1);}
A{color:gold}
</style>


So...

<style TYPE="text/css">
B{color:darkorange}
A{color:gold}
</style>

Change colors to your preference

Wed Dec 01, 2004 7:50 pm

For more help on cascading style sheets, go here:
http://www.w3schools.com

Click on "Learn CSS"
Topic locked