Results 1 to 3 of 3

Thread: Uncontrollably Wide Div

  1. #1
    Join Date
    Apr 2006
    Posts
    205
    Thanks
    11
    Thanked 0 Times in 0 Posts

    Question Uncontrollably Wide Div

    Hello,

    I have a div that contains an image ("foto") and button to close it ("Fechar").

    This div is meant to sit in the centre of the page and hold the button in position over the image and provide a nice simple border around the whole thing.

    The problem is, now that it's online the width isn't being restricted, and so the border goes almost to the edge fo the window and the button sits way off of the image.

    The HTML looks like this:

    HTML Code:
    <body>
      <div id="foto1" style="display: none">
        <img src="images/modo-fotos/vizu02.jpg" width="398"  height="550"> 
        <div class="closeButton">
           <a href="#" onClick="togglegal(foto1, container);">Fechar</a>
        </div>
      </div>
    </body>
    ...and the CSS like this:
    Code:
    body {
    	text-align: center;
    }
    
    #foto1,#foto2,#foto3,#foto4,#foto5,#foto6,#foto7,#foto8,#foto9,#foto10,#foto11,#foto12 {
    	margin: 30px auto;
    	position: relative;
    	border: #695226 solid 1px;
    	border-width: 1px 1px 2px 1px;
    	padding: 0;
    }
    
    div#foto1 {
    	width: 398px;
    }
    Any ideas?

  2. #2
    Join Date
    Apr 2006
    Posts
    205
    Thanks
    11
    Thanked 0 Times in 0 Posts

    Default

    Almost forgot...

    Here's the site online:
    http://www.byvizu.com.br/Namoda.aspx

    You reach the div in question after two clicks. One on the link below the image-grid on the right and one on any of the thumbnails in the image grid that follows.

  3. #3
    Join Date
    Apr 2006
    Posts
    205
    Thanks
    11
    Thanked 0 Times in 0 Posts

    Default

    Can anyone help?

    I don't understnad why a div would be wider than the defined width and wider than everything it contains.

    Any ideas would be very much appricated. Thanks

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
  •