Say I have 3 frames in a frameset arranged in 3 rows. Frames 1 and 3 are from my site and frame 2 (the central one) is from an external website. Is there a cunning way to force the browser to centre align the data in frame 2?
I've found a small work-around which uses a frameset within a frameset which has 2 blank columns either side of the data but that means the scrollbars from frames 2 and 3 are out of alignment.
Any ideas?
Edit : The code I have currently is :
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server" />
<frameset rows="10%,65%,25%" border=0 frameborder="no">
<frame name="nav" noresize scrolling="no" src='NavigationBar.aspx?NAVIGATION=<%=sDisplayNavigation %>'>
<frameset cols="1*,1010px,1*">
<frame name="lspace" scrolling="no" src="border.htm">
<frame name= "main" scrolling="auto" src='<%=sMainTextURL%>#highlight'>
<frame name="rspace" scrolling="no" src="border.htm">
</frameset>
<frame name="suggest" scrolling="yes" noresize src='<%=sSuggestURL%>'>
</frameset>
</html>