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!

Problem with Restore window size

Status
Not open for further replies.

dcusick

Technical User
Aug 9, 2000
271
0
0
US
Hi all.. I recently inherited some JSP code from a co-worker... There is a bug that I was asked to fix. Basically, there is an included footer file that prints out Copyright information. When the screen is maximized, the text is on the bottom of the screen. However, when I click on the Restore Down button (the middle of the three buttons in the control box) the footer text is still at the bottom of the window, however, there are graphics and text already there, and the footer overlays this. Basically, it looks like it is assumed that the page will always be maximized. Is there any way to fix this? Here is the include statement...

Code:
<jsp:include page="jspf/footer.jsp"></jsp:include>

and here is the footer.jsp...
Code:
		<div class="footer">
                    <!--br></br>
                    <img src="images/struts-power.gif" alt="Powered by Struts" WIDTH="55" HEIGHT="37"></img><br></br-->
                    <!--img src="images/dot_clear.gif" border="0" width="442" height="5"></img-->
&copy; 2004, My Company
		    <img src="images/dot_clear.gif" border="0" width="442" height="5"></img>							
		</div>

Thanks in advance for any help!

Doug
 
This is really an HTML question rather than JSP, and without seeing your generated HTML output, I can only guess, however I expect it has something to do with the fact that you are using <div> and there are not <table> tags apparent.

--------------------------------------------------
Free Database Connection Pooling Software
 
Thanks sedj... Figured it had something to do with the DIV tags... I'll move this over to the HTML area...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top