View Single Post
Old 29-07-03, 02:12 PM   #6
Šiego
Alpha Stoner
 
Šiego's Avatar
 
Join Date: Apr 2001
Location: www.naphoria.com
Posts: 5,121
Default

Hey Bob, hope you don't mind me posting this public, but you have two body tags ie:
Quote:
<body background="bg.gif">
<body link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" style="font-family: Verdana; font-size: 10pt; color:#FFFFFF" text="#FFFFFF" bgcolor="#000000">
should be:
Quote:
<body background="bg.gif" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" style="font-family: Verdana; font-size: 10pt; color:#FFFFFF" text="#FFFFFF" bgcolor="#000000">
But you don't need to define your link attributes in the <body> tag as you have:
Quote:
<STYLE TYPE="text/css">
a:link { color: #898989; text-decoration: none }
a:active { color: #D2CE6D; text-decoration: none }
a:visited { color: #898989; text-decoration: none }
a:hover { color: #D2CE6D; text-decoration: none }
</STYLE>
You also have two style sets and they can be combined like this:
Quote:
<style type="text/css">
<!--
a {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-family: Arial, Helvetica, sans-serif; font-size: 9pt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-style: normal;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-weight: bold;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-variant: normal;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;text-transform: none;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color: #FFFFED;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;text-decoration: none; cursor: hand;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}

a:hover {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-family: Arial, Helvetica, sans-serif;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-size: 9pt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-style: normal;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-weight: bold;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-variant: normal;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;text-transform: none;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color: #FFFF00;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;text-decoration: none;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cursor: hand;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}

a:active {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-family: Arial, Helvetica, sans-serif;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-size: 9pt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-style: normal;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-weight: bold;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-variant: normal;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;text-transform: none;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color: #FFFFED;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;text-decoration: none;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cursor: hand;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}

body {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color : White;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;background-color : Black;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-family : sans-serif;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;font-size : 12pt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;text-align : left;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollbar-face-color:#000000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollbar-shadow-color:#440000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollbar-highlight-color:#440000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollbar-3dlight-color:#220000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollbar-darkshadow-color:#220000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollbar-track-color:#000000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollbar-arrow-color:#DD0000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;scrollbar-base-color:#000000;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
-->
</style>
You can also make it where your menu items change color on hover (and click as well) without much bother..

Just helpin' :¬)


Š


__________________

   There's only one way off so you might as well enjoy the ride..
________________________________________________________

Naphoria - P2P Portal www.naphoria.com/chat

Napsterites mIRC v2 | Napsterites Chat

Last edited by Šiego : 29-07-03 at 02:32 PM.
Šiego is offline   Reply With Quote