View Full Version : Help on font plz


AtreidesPhalanx
04-25-2004, 02:46 AM
I'm using the css layout in lissa's css page 3, with a header, left column, and center.

And I'm using the css code in lissa's css page 1. I want my font to be small, not medium. I make the value small but it still shows up medium sized. Are the two codes conflicting? Ack, better question - Can you help me please? =)

[self edit] - o and I put in a code for a vertical clock thats spose to be resting at the top left corner, but it ain't showing up. Can someone help me with that too?

website - atpx.net (http://www.atpx.net/indexx.html)

kittycat
04-25-2004, 03:11 AM
Combining your CSS codes, they should look like this:

<style type="text/css">

A:link
{ text-decoration: overline; color:#cccccc; }
A:visited
{ text-decoration: line-through; color:#ffffff; }
A:active
{ text-decoration: underline overline; color:#cccccc; }
A:hover
{ text-decoration: underline; color:#cccccc;

background-image: url(http://www.atpx.net/background1.JPG);
background-color: #000000;

cursor: ne-resize;}

h1 {font-family: arial;
color: #66ff00; }

p {font-family: arial;
color: #ffffff; }

body
{ background: #000000;
background-image: url(http://www.atpx.net/background1.JPG);
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
font-family: arial;
color: #ffffff ;
letter-spacing: 0pt;
font-weight: bolder;
font-size: small;
direction:rtl;
scrollbar-face-color : #ff0000;
scrollbar-highlight-color : #cc3300;
scrollbar-3dlight-color : #ff9966;
scrollbar-shadow-color : #990000;
scrollbar-darkshadow-color : #660000;
scrollbar-track-color : #00ff00;
scrollbar-arrow-color : #00ffff;
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}

#header {
margin: 20px;
padding: 10px;
height: 100px;
}
#left {
position: absolute;
left: 15px;
top: 160px;
width: 200px;
}
#center {
top: 0;
margin-left: 230px;
margin-right: 15px;
}
</style>

And that goes between the <head> and </head> tags.