Results 1 to 2 of 2

Thread: CSS- relationship between image position and div elements?

  1. #1
    Join Date
    Aug 2004
    Posts
    34

    CSS- relationship between image position and div elements?

    Hello everyone:

    I am designing a web page which has image logo on top followed by CSS Navbar beneth it.

    The default postion for image is top left corner on browser. I tried to use background-position property
    to center the image. but it won't work. The image will move below the navbar.

    I think I am not understanding the relationshiop betwo div elements and image. Please look at my code and give me some suggestions. thanks!

    HTML code :
    Code:
     <body>
     
    <div id="navbar2">
    
    <ul>
     <li><a href="">Button1</a></li>
     <li><a href="">Button2</a></li>
     <li><a href="">Button3</a></li>
     
    </ul>
    </div>
    
    </body>
    external stylesheet code
    Code:
    body {background-image: url(images/mutual_banner.gif); 
          background-repeat: no-repeat;
          background-position: center;} 
     
     
    
    #navbar2 {height: 30px;
             width: 80%;
             border-top: 1px solid #000;
             border-top: 1px solid #000;
             background-color: #336699;
             
             margin: 100px 50px;}
    Jeff
    11-22-06

  2. #2
    Join Date
    Feb 2006
    Location
    Salisbury UK
    Posts
    4,332
    I tried out your code with one of my images and it placed the background-image central vertically as well as horizontally which put it "below the navbar" as you said because the navbar does not have much in it yet.

    To get it central horizontally only, use background-position: 50% 0; or top center and see

    http://www.w3schools.com/css/pr_background-position.asp
    Code downloaded to my PC will be deleted in due course.
    WIN7; IE9, Firefox, Opera, Chrome and Safari for Windows; screen resolution usually 1366*768.
    Also IE6 on W98 with 800*600 and IE8 on Vista 1440*900.

Similar Threads

  1. Div alignment blues
    By tezcatlipoca in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 06 Sep 2006, 11:27 AM

Posting Permissions

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