Click to See Complete Forum and Search --> : frame problem


Booooze
08-24-2003, 04:18 PM
hey all,

im having a lil frame problem heres the code- it all works, but

<frameset rows="90,*" frameborder="0" bordercolor="green" border="0">
<frame name="title" src="title.html" scrolling="no" bordercolor="black" noresize="noresize"/>
<frameset cols=200,*,135" border="1" frameborder="1" bordercolor="green">

<frame name="menu" src="menu.html" scrolling="no" bordercolor="black" noresize="noresize"/>
<frame name="main" src="main.html" bordercolor="black" noresize="noresize" />
<frame name="links" src="links.html" bordercolor="black" scrolling="no" noresize="noresize" />
</frameset>


---int the top frame (rows), i have one big frame that i have an image, a title, and a counter, they all show up allright, bit if u clilck anywhere in the frame and hold, it like moves up and down, how can i fix that? , thx

David Harrison
08-24-2003, 04:54 PM
If you can see all of the page content but it still scrolls a little it means that there is an unseen margin or padding that is making the page scroll. You can get rid of these margins and paddings by specifying new ones. I would happily tell you what the CSS for that would be but first I need to see the source code of title.html.

David Harrison
08-24-2003, 05:08 PM
Having thought about it, try this first and if it doesn't work then post your code. In the head of title.html put this:

<style type="text/css"><!--

body{margin-bottom:0;padding-bottom:0;}

--></style>

Booooze
08-24-2003, 05:15 PM
its ok, ig ot it, i just had to make the frame size bigger, but thx for the help anyways:D