Results 1 to 2 of 2

Thread: Iframe, Valign'ed image

  1. #1
    Join Date
    Sep 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Iframe, Valign'ed image

    Ok, i found a way to valign an image, by making a table with width="100%" height="100%" and the td valign="bottom".

    Ok, now i have a banner at the top, with a menu under, then a iframe under that.

    But after putting the iframe, the image stretches the page down, and doesnt go over the iframe.

    I was wondering if you all had some neat script that has the image on like a "top layer", so that when you scroll down, the image is still on the bottom right, but also appears over the iframe if needed.

  2. #2
    Join Date
    Feb 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    try fixed position
    Code:
    #element {
         position: fixed;
         bottom: 0;
         right: 0;
    }
    Must be working

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
  •