1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Help...Site doesn't load at the top of the browser??

Discussion in 'HTML & Website Design' started by Markith, May 22, 2007.

  1. #1
    I am developing this site:

    http://www.dnam.net/new.html

    How can I make it load at the top of the browser??
    Tried looking on the internet, came up empty.

    Any help greatly appreciated...thanks
     
    Markith, May 22, 2007 IP
  2. Katy

    Katy Moderator Staff

    Messages:
    3,490
    Likes Received:
    513
    Best Answers:
    7
    Trophy Points:
    355
    #2
    Wow, you don't have a stylesheet? Either add margin: 0; to your CSS or topmargin="0" to the body tag.
     
    Katy, May 22, 2007 IP
  3. Markith

    Markith Peon

    Messages:
    354
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thanks katy, i dont know what a stylesheet is, but will give your advice a try :)
     
    Markith, May 22, 2007 IP
  4. Katy

    Katy Moderator Staff

    Messages:
    3,490
    Likes Received:
    513
    Best Answers:
    7
    Trophy Points:
    355
    #4
    Katy, May 22, 2007 IP
    Markith likes this.
  5. coldclimber

    coldclimber Peon

    Messages:
    266
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Create a css style sheet easy in dreamweaver just click new -> css and then add this to it

    body {
    background-image:url(images/bckgrnd.jpg);
    background-position:top;
    background-repeat:repeat-x;
    margin:0px 0px 0px 0px;
    background-color:#fff;}

    once you have done save it a something like style.css then go back to your html file and then select text-> css styles-> attach style sheet this will then resolve your problem and also make that background image 100% width

    once you have created your style sheet make sure that this is in between the <head>

    <link href="style.css" rel="stylesheet" type="text/css" />

    </head>
     
    coldclimber, May 22, 2007 IP
    Markith likes this.
  6. Markith

    Markith Peon

    Messages:
    354
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6
    thanks, both of you repped...i do have dreamweaver, just not to familiar with it, i grew up with straight html
     
    Markith, May 22, 2007 IP