PDA

View Full Version : css problems


skurry
01-18-2003, 08:22 PM
All right, I've entered the head part of my html, everything seems to be working except the coloring of my scrollbar, fading text, and the tag thats supposed to take away the underlining to my links. Can anyone help me out as to why these aren't working? Please, please, please..


<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function WADE(){
var popurl="http://www.wadejrobson.net/wadejrobson.htm"
winpops=window.open(popurl,"WADE","width=495,height=345")
}
</script>
<script>
//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function MEDIA(){
var popurl="http://www.wadejrobson.net/media.htm"
winpops=window.open(popurl,"MEDIA","width=495,height=345")
}
</script>
<script>
//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function INTERACT(){
var popurl="http://www.wadejrobson.net/interaction.htm"
winpops=window.open(popurl,"INTERACT","width=495,height=345")
}
</script>
<script>
//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function DOMAIN(){
var popurl="http://www.wadejrobson.net/domain.htm"
winpops=window.open(popurl,"DOMAIN","width=495,height=345")
}
</script>
<script>
//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function WWW(){
var popurl="http://www.wadejrobson.net/www.htm"
winpops=window.open(popurl,"WWW","width=495,height=345")
}
</script>
<script>
//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function THEGIRL(){
var popurl="http://www.wadejrobson.net/thegirl.htm"
winpops=window.open(popurl,"THEGIRL","width=495,height=345")
}
</script>
<style type="text/css">
<!--

A:link
{ text-decoration: none}
A:visited
{ text-decoration: none}
A:active
{ text-decoration: none}
A:hover
{ text-decoration: none}
cursor: w-resize}
scrollbar-face-color : #9CADC6;
scrollbar-highlight-color : #9CADC6;
scrollbar-3dlight-color : #9CADC6; scrollbar-shadow-color : #FFFFFF;
scrollbar-darkshadow-color : #FFFFFF; scrollbar-track-color : #9CADC6;
scrollbar-arrow-color : #FFFFFF }
-->
</style>
<script src="fade.js" language="Javascript"></script>
</head>

cg9com
01-18-2003, 08:37 PM
thats alot of popups!
anyway i changed all of your anchors to one shorthand because you were using the same attribute for all of them, also the scrollbars go inside of the body tag (remember ie only)
as does the cursor i believe.

<style type="text/css">
<!--
a {
text-decoration: none;
}
body {
scrollbar-face-color : #9CADC6;
scrollbar-highlight-color : #9CADC6;
scrollbar-3dlight-color : #9CADC6;
scrollbar-shadow-color : #FFFFFF;
scrollbar-darkshadow-color : #FFFFFF;
scrollbar-track-color : #9CADC6;
scrollbar-arrow-color : #FFFFFF;
cursor: w-resize;
}
-->
</style>

skurry
01-18-2003, 10:38 PM
oooh, thank you so much! I don't know why I didn't think of trying that. :D