Log in

View Full Version : HTML/CSS Question regarding a Banner



Moshambi
11-28-2007, 12:28 AM
so i dont know if im doing this correctly but i add my banner like this:




<html>
<title> </title>
<head>
<link rel="stylesheet" type="text/css" href="skin.css" />
<img src="images/banner.gif" />
</head>
<body>

....


but i want to be able to position my banner, i dont know if this is done using html, css, or if it can even be done at all. thanks in advance for any help, and if im not describing it well enough let me know

Moshambi
11-28-2007, 12:32 AM
ok im dumb. i just realized that i can do it using css if i do something like this:



<html>
<title> </title>
<head>
<link rel="stylesheet" type="text/css" href="skin.css" />
<div id="banner">
<img src="images/banner.gif" />
</div>
</head>
<body>

....


sorry about that!