Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > HTML > HTML Code Clinic
|
HTML Code Clinic Do you have some HTML code you'd like to share and get suggestions from others for tweaking or improving it? This discussion is the place.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the HTML Code Clinic section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old February 16th, 2007, 06:32 PM
Registered User
 
Join Date: Feb 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Scrollbar for the frameset

Hi all,

i have an HTML page that is divided into 3 frames:

---------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>Blah!Blah!</title>
</head>

<frameset rows="*" cols="185,*" frameborder="NO" border="0" framespacing="0">
<frame src="leftFrame.asp" name="leftFrame" scrolling="NO" noresize>
<frameset rows="85,*" frameborder="NO" border="0" framespacing="0">
<frame src="topFrame.html" name="topFrame" scrolling="NO" noresize>
<frame src="mainFrame.asp" name="mainFrame">
</frameset>
</frameset>
<noframes>
<body></body>
</noframes>
</html>
---------------------------------------------------------------------

my problem is that i want a scrollbar for the entire frameset and not just for the frames.
Could be done???????

Thank u


Jakob
 
Old February 16th, 2007, 10:44 PM
Wrox Author
 
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
Send a message via AIM to dparsons
Default

You can give the appearance as such, though I am not sure why you would need to. (BTW I am cringing as i write this ;] )
<frameset rows="100%" frameborder="NO" border="0" framespacing="0">
<frame src="layout.html" name="layout" scrolling="auto" noresize>
</frameset>

on the layout.html page, place your above code.

However, for this to even work, the layout.html page would have to expand beyond the viewable area.
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
Technical Editor for: Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html





Similar Threads
Thread Thread Starter Forum Replies Last Post
Use TABLE or FRAMESET??? OchirM HTML Code Clinic 1 January 2nd, 2008 11:46 AM
Element Frameset not supporte vj_mi ASP.NET 2.0 Basics 0 October 2nd, 2007 12:47 AM
CSS and frameset capabilities paragon CSS Cascading Style Sheets 1 January 11th, 2006 02:08 PM
frameset zaman1111 JSP Basics 0 August 9th, 2005 04:27 PM
closing frameset with javascript Adam H-W Dreamweaver (all versions) 1 June 18th, 2003 05:15 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.