Results 1 to 2 of 2

Thread: HTML/CSS Question regarding a Banner

  1. #1
    Join Date
    Nov 2007
    Location
    USA
    Posts
    170
    Thanks
    8
    Thanked 22 Times in 22 Posts

    Default HTML/CSS Question regarding a Banner

    so i dont know if im doing this correctly but i add my banner like this:

    Code:
    <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

  2. #2
    Join Date
    Nov 2007
    Location
    USA
    Posts
    170
    Thanks
    8
    Thanked 22 Times in 22 Posts

    Default

    ok im dumb. i just realized that i can do it using css if i do something like this:

    Code:
    <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!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •