chichy
06-14-2003, 10:59 AM
This is really weird. I put a mouse-over code on Geocities, and it works. But in the code, I made the links a mediumvioletred colour with no underline. And all the links under the "The page ends here" were mediumvioletred and the mouse over worked fine. Everything IN my page, however, was blue and underlined before the mouse-over.
Can anyone please help me with this? Thanx!
lefty
06-14-2003, 01:42 PM
Did you put your codes on every page?
chichy
06-15-2003, 02:48 AM
yes, you can see my site at www.geocities.com/girlzonly22/
chichy
06-27-2003, 08:42 AM
Ok I'm done my layout and i've finished the mouse overs. Just one thing left: how to i make the text go upside down when you hover over a link? I added a code to my stylesheet, (mycss.css) but it's not working. The code supposed to change the text upside down is on the hover, filter: flipv.
<STYLE type="text/css">
<!--BODY{background:white;
font-face:arial;
font-size:9px;
font-color: #FF99FF;
font-weight:none;
letter-spacing:2.2}
-->
<!--BODY{
scrollbar-arrow-color: hotpink; white
scrollbar-track-color: white;
scrollbar-face-color: #FFCCFF;
scrollbar-highlight-color: white;
scrollbar-3dlight-color: white;
scrollbar-darkshadow-color: white;
scrollbar-shadow-color: white;}
<!--
A:link {color:plum; TEXT-DECORATION:none}
A:visited{color:plum;TEXT-DECORATION:none}
A:active{color:silver;TEXT-DECORATION:none}
A:hover {color:deeppink; text-decoration: none; background-color: #FFCCFF; border: 1 dotted; bordercolor: hotpink; cursor: default; filter: flipv}
-->
</style>
I've fixed my other problem. It was I didn't add an "a:link" section :P
MaGiCSuN
07-07-2003, 11:43 AM
<STYLE type="text/css">
<!--
BODY{background:white;
font-face:arial;
font-size:9px;
font-color: #FF99FF;
font-weight:none;
letter-spacing:2.2}
BODY{
scrollbar-arrow-color: hotpink; white
scrollbar-track-color: white;
scrollbar-face-color: #FFCCFF;
scrollbar-highlight-color: white;
scrollbar-3dlight-color: white;
scrollbar-darkshadow-color: white;
scrollbar-shadow-color: white;}
A:link {color:plum; TEXT-DECORATION:none}
A:visited{color:plum;TEXT-DECORATION:none}
A:active{color:silver;TEXT-DECORATION:none}
A:hover {color:deeppink; text-decoration: none; background-color: #FFCCFF; border: 1 dotted; bordercolor: hotpink; cursor: default; filter: flipV; height: 0px;}
-->
</style>
try that. You don't need to add <!-- and --> after and before every section. Just at the beginning and the end of the WHOLE stylesheet is fine.
in order to make the flipV and flipH to work you need to add height: 0px to it, i added that into the code above. Hope it works now.
Love,
Mirna
chichy
07-12-2003, 02:03 AM
Yes that worked! Thank you!