PDA

View Full Version : CSS Image


Rick923
02-06-2007, 08:34 PM
How would I insert a image to appear on every page left hand cornor with this

BODY {
margin: 5% 12%
}

BODY, TD {
font-family: Verdana;
font-size: 12px;
color: #666666
}

H1 {
font-size: 12px;
color: #f77d45;
padding-bottom: 10px;
border-bottom: 1px solid
}

A:link {
color: #666666;
text-decoration: none;
}

A:visited {color:
#666666;
text-decoration: none;
}

A:hover {
color: #FF6600;
text-decoration: none;
}

FORM {
margin: 0px
}

INPUT {
width: 300px;
font-family: Verdana;
font-size: 10px;
color: #666666;
background: white;
padding: 1px 3px 0px;
margin-right: 10px
}

SELECT {
width: 300px;
font-family: Verdana;
font-size: 12px;
color: #666666;
margin: 1px 0px;
margin-right: 10px
}

TEXTAREA {
width: 300px;
height: 70px;
font-family: Verdana;
font-size: 12px;
color: #666666;
padding: 1px 3px 0px;
margin-right: 10px
}

P {
margin-top: 15px
}

HR {
height: 1px;
color: #DDDDDD;
margin: 10px 0px
}

.BUTTON {
width: auto;
background: #dddddd;
}

techietim
02-07-2007, 04:36 AM
//css
body{
margin: 0px;
padding: 0px;
}
#image{
position: absolute;
top: 0px;
left: 0px;
width: **px; //image width
height: **px; //image height
background: transparent url(image.gif) no-repeat;
}
//html
<div id="image"></div>