Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

No-text at bottom of a page

Status
Not open for further replies.

801119

Programmer
Apr 10, 2000
311
0
0
SE
Greetings all...

I’m currently helping my brother with his page, and its main page is in a popup window! The question is as follows: When there is to much content on one page (the main frame, btw, the page is framed into 4) and the user must scroll down to see the rest, is there anyway to hide part of the text which is displayed nearest bottom line?!

To make it more understandable here is a “window”, how it looks now!
|-------------------------------------------| (top line)
| |
| text |
| |
| text text text |
| |
| |
| |
| |
| |
| |
| Closest text to bottom bar |
|-------------------------------------------| (bottom line)

this is how I want it to be
|-------------------------------------------| (top line)
| |
| text |
| |
| text text text |
| |
| |
| |
| |
| |
| |
| | *
|-------------------------------------------| (bottom line)

* = this line will not show any text, it is like a no-text zone on the page

anyone knwo if this is possible?! it is like clip for an image, but instead for the document!!

Thanks in advance for any help!!
My codes look like something a kid wrote
I have absolutely no idea what I am talking about
Somehow I still manage to make it work
 
801119,

You can frameset the bottom part of the page and keep it blank.

<frameset rows=&quot;10%, 85%, 5%&quot; border=&quot;0&quot;>
<frame src=pick.asp name=&quot;pick&quot; scrolling=&quot;yes&quot;>
<frame src=select.asp name=&quot;sel&quot; scrolling=&quot;yes&quot; >
<frame src=choose.asp name=&quot;xcel&quot; scrolling=&quot;no&quot;>
</frameset>
 
Set the margin-bottom to some value.Margin-bottom is a style attribute, but you could also set it like

<body bottomMargin=&quot;20&quot;...>

Bj - though I am not too clear on what you mean ;-)
 
ok, if I put it like this then?!

When ever there is a need to scroll the window, the text below will always be seen near the statusbar when scrolling. I'm trying to find a way that will &quot;hide&quot; a part of the page, so that no text is visible at the bottom! On solution that FengShui1998 said, to add a fram, which would do what I'm after. However, I would prefer another way, if one exists!
I know there is a way to do this with images, clip or something!!

My brother thinks it's to enoying to add another fram! :)
Thanks anyway My codes look like something a kid wrote
I have absolutely no idea what I am talking about
Somehow I still manage to make it work
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top