Need help removing "frames" from site I am changing

frudecoder

New Member
I am working on changing a website that was created by another company. Mostly I am just updating information, but I also wanted to remove the iframes that appeared to be there. But when I go into the code on this page:

http://www.thetravelstore.us.com/unitstudy.html

there are no frames??? I am trying to take this page, and a few like it, from stacked "iframes" to easier-to-navigate vertical columns. Can anyone look at this and let me know the easiest way to get rid of these "frames"? I have attached a copy of the CSS for the site also in case it might be in there. I am new to CSS.

Thanks!
 

Attachments

  • styles copy.txt
    3.7 KB · Views: 38
Last edited:

d a v e

New Member
it's the overflow set on the div
<div id="BodyText" style="position: absolute; top:85; left:350; width: 625; height: 190; overflow: auto; z-index: 70;" >
remove the bits in bold and the div will automatically expand to hold all the list
 
Top