Results 1 to 3 of 3

Thread: Not sure what to call this

  1. #1
    Join Date
    Jun 2005
    Posts
    40
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Not sure what to call this

    hey,

    not really sure what this is called, but i need help doing this:

    I have this design:

    http://img124.imageshack.us/img124/8...liocopy7jf.jpg

    and when i click on Wallpapers on the left side i want the silver box on the right to open the wallpapers page.

    i've already sliced it and made the iframes, bnut im not sure how i can make it load the page in the small box instead of the whole page.

    i hoope i was clear.

    any help is much appreciated.

    thanks.

  2. #2
    Join Date
    May 2005
    Posts
    141
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    instead of frames, i think you could just place an i frame over the window, and name it, then tell the link to target the iframe.

  3. #3
    Join Date
    Jun 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    unless you need to display content from outside of your server you shouldn't need iframes. if that right hand grey box area is where you want to display some content, and you don't want the site to expand (ie: fixed Height) you can just place some css in there, ex:

    Code:
    /*css goes in seperate style sheet or head*/
    .ContentBox {width:400px; height:450px; background-image:url(/img/greybox.jpg); background-repeat:no-repeat; overflow:auto;}
    
    <!-- html -->
    <div class="ContentBox">
    your scrollable content goes here
    </div>
    edit the height and width as needed of course.
    if you want to use tables you can still put this div in a column over there.
    but yea, try to stay away from Iframes if you aren't pulling outside content, extra page weight and horrible for seo and page rank.

    _good luck

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
  •