bluangel
11-30-2005, 10:41 PM
My fram scrollbar colors don't work! I already have style sheets but they don't seem to work! HELP!
|
View Full Version : My frame scrollbar COLORS dont work! bluangel 11-30-2005, 10:41 PM My fram scrollbar colors don't work! I already have style sheets but they don't seem to work! HELP! pb&j 11-30-2005, 10:50 PM please provide a link to your webpage having the problems. we cannot fix the unseen. thanks. bluangel 11-30-2005, 10:55 PM http://www.freewebs.com/perplezgemz pb&j 11-30-2005, 11:02 PM 1. you should fix your frameset to this... <frameset cols="20%,60%,20%" border=0 frameborder=0 framespacing=0 scrolling=yes resize=no> <frame src="menu.html" name="left" style="border: solid 5px #bc61eb;" scrolling="yes"> <frame src="welcomepg.html" name="center" style="border: solid 5px #ccccff;" scrolling="yes"> <frame src="right.html" name="right" style="border: solid 5px #bc61eb;" scrolling="yes"> </frameset> you had some missing " quotes and extra > brackets. 2. your hover and body css codings are missing ending brackets... <style type="text/css"> A:link { text-decoration: none; color:#bc61eb; } A:visited { text-decoration: none; color:#bc61eb; } A:active { text-decoration: none; color:#bc61eb; } A:hover { text-decoration: underline; color:#cc99ff; background-color: #ffffff; } body { background-color: #ffffff; font-family: comic sans ms; color: #bc61eb ; scrollbar-face-color : #bc61eb; scrollbar-highlight-color : #bc61eb; scrollbar-3dlight-color : #bc61eb; scrollbar-shadow-color : #bc61eb; scrollbar-darkshadow-color : #bc61eb; scrollbar-track-color : #ffffff; scrollbar-arrow-color : #ffffff; } bluangel 11-30-2005, 11:05 PM Whoa! Never knew that much stuff was wrong! Thanks a LOT! pb&j 11-30-2005, 11:09 PM its a start in the right direction. hope it helps. |