|
Basically, you need to create a link file in your <head> tag to a stylesheet containing the bear information of your site like fonts, colors, frames, etc.
I think you just have to add a stylesheet:
<html>
<head>
<link rel="stylesheet" href="URL.css" type="text/css">
</head
so this could be the stylesheet you link to:
<style type=text/css>
<!--
A:Link
{
color: #1959E6;
text-decoration: none;
cursor: default;
font-weight: normal
}
A:Active
{
color: #1959E6;
text-decoration: underline;
cursor: default;
font-weight: normal
}
A:Visited
{
color: #1959E6;
text-decoration: none;
cursor: default;
font-weight: normal
}
A:Hover
{
color: #252C9F;
text-decoration: none;
cursor: default;
font-weight: none;
height: 0;
text-transform: none;
filter: blur;
}
body
{
font-family:verdana;
font-size:8pt;
font-weight:normal;
line-height:8pt;
color:#000000;
cursor:none;
background-color: #70BAFF;
align:left;
text-align:left;
{
scrollbar-face-color: #2A276D;
scrollbar-shadow-color: #2A276D;
scrollbar-highlight-color: #70BAFF;
scrollbar-3dlight-color: #5496FF;
scrollbar-darkshadow-color: #5496FF;
scrollbar-track-color: #2A276D;
scrollbar-arrow-color: #70BAFF;}
--!>
</style>
Does this help at all?
|