duredriel
02-22-2003, 02:52 PM
Ok, this is what I have so far
<style type="text/css">
<!--
A:link {text-decoration:none}
A:visited {text-decoration:none}
--> </style>
<style fprolloverstyle>
A:hover {color: #00FF33; font-family: Magneto; font-size: 1em; letter-spacing: 2pt; text-decoration:none; color: #00FF33; filter:glow; height:0 }
</style>
Now it looks almost exactly like I want it to, but down on later in my code I have all of my links alternating blue and orange. The glow comes up red (which I didn't want it to be) and I want to know how to make an orange glow when I hover over my blue links and a blue glow when I hover over my orange links... can anyone help me?
the_dark_one02
02-22-2003, 07:47 PM
use the class="" thing in your links for example :
A:hover.one
{
color: #(dont know the color but this would be your shade of orange); font-family: Magneto; font-size: 1em; letter-spacing: 2pt; text-decoration:none; color: #(dont know the color but this would be your shade of orange); filter:glow; height:0
}
A:hover.two
{
color: #(dont know the color but this would be your shade of blue); font-family: Magneto; font-size: 1em; letter-spacing: 2pt; text-decoration:none; color: #(dont know the color but this would be your shade of blue); filter:glow; height:0
}
then you call it by adding the class="" thing to ur links:
<a href="sumwer.html" class="one">orange link</a>
<a href="sumwerelse.html" class="two">blue link</a>
did that help?
duredriel
02-22-2003, 09:20 PM
Ok, so this is what I have now
A:link {text-decoration:none}
A:visited {text-decoration:none}
--> </style>
<style fprolloverstyle>
A:hover.one
{
color: #(FF6600);
font-family: Magneto; font-size: 1em; letter-spacing: 2pt; text-decoration:none;
color: #(000099);
filter:glow; height:0
}
A:hover.two
{
color: #(000099); font-family:
Magneto; font-size: 1em; letter-spacing: 2pt; text-decoration:none; color:
#(FF6600); filter:glow; height:0
}
</style>
And I put all the class="one" or "two"s down on my links but the glow still comes up red! What's wrong with my code?
duredriel
02-22-2003, 09:21 PM
And here's my links in case you need to look at those too....
<center><b><font face="Magneto"><font size=-1><font color="#FFFFFF">*~</font><font color="#000099"><a href="hpinline.htm" title="The Main Page" class="two" style="color: #000099" target=inlineframe>Home</a></font><font color="#FFFFFF">~*
*~</font><font color="#000099"><a href="rh4ever.htm" title="Ron + Hermione Forever!!!" class="one" style="color: #FF6600" target=inlineframe>R&H
4Ever</a></font><font color="#FFFFFF">~* *~</font><font color="#000099"><a href="weasleys.htm" title="I Love Redheads" class="two" style="color: #000099" target=inlineframe>Weasleys</a></font><font color="#FFFFFF">~*
*~</font><font color="#000099"><a href="hpcool.htm" title="And this coming from the fingers of a LotR Fan!! *gasp*" class="one" style="color: #FF6600" target=inlineframe>HP
is Cool</a></font><font color="#FFFFFF">~* *~</font><font color="#000099"><a href="lotrtwins.htm" title="Similarities between LotR and Harry Potter" class="two" style="color: #000099" target=inlineframe>LotR
Twins</a></font><font color="#FFFFFF">~* *~</font><font color="#000099"><a href="hpinfo.htm" title="Basic Stuff that everyone knows" class="one" style="color: #FF6600" target=inlineframe>Basic
Info</a></font><font color="#FFFFFF">~* *~</font><font color="#000099"><a href="rumors.htm" title="Rumors about the new books (the best pages of all Harry Potter sites)" class="two" style="color: #000099" target=inlineframe>Rumors</a></font><font color="#FFFFFF">~*</font></font></font></b>
<br><b><font face="Magneto"><font size=-1><font color="#FFFFFF">*~</font><font color="#000099"><a href="hpquotes.htm" title="My favorite quotes from Harry Potter" class="one" style="color: #FF6600" target=inlineframe>Quotes</a></font><font color="#FFFFFF">~*
*~</font><font color="#000099"><a href="creatures.htm" title="All the character profiles for the Harry Potter books" class="two" style="color: #000099" target=inlineframe>Creatures</a></font><font color="#FFFFFF">~*
*~</font><font color="#000099"><a href="appendix.htm" title="Like the LotR Appendixes... this is under heavy construction" class="one" style="color: #FF6600" target=inlineframe>Appendixes</a></font><font color="#FFFFFF">~*</font></font></font></b></center>
duredriel
02-22-2003, 09:27 PM
Doy... ok I took the paranthesis off my color numbers and it's <i> still </i> red.... so now what?
duredriel
02-22-2003, 11:19 PM
AND.... if you need it, here's the link to what I have uploaded about it so far so you can look for any further obstructionable possibilities with the code glowy color.
http://www.geocities.com/pallidraven/blank.html
<style type="text/css">
a:link.one, a:visited.one
{
font-family: Magneto;
color:#FF6600;
text-decoration:none;
font-size: 10px;
}
A:hover.one
{
letter-spacing: 2px;
text-decoration:none;
filter:glow(color:#000099);
height:0;
}
a:link.two, a:visited.two
{
font-family: Magneto;
color:#000099;
text-decoration:none;
font-size: 10px;
}
A:hover.two
{
letter-spacing: 2px;
text-decoration:none;
filter:glow(color:#FF6600);
height:0
}
</style>
<a href="#" class="one" target="inlineframe">ONE</a>
<a href="#" class="two" target="inlineframe">TWO</a>
duredriel
02-23-2003, 12:52 AM
Thank you SO MUCH!!! I love you forever!!!! (lol) Thank you thank you thank you!