Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > Programmers Lounge > Programming Discussions » Obnoxious frameset borders
Closed Thread
Old 05-15-2007, 01:29 AM   #1 (permalink)
saladfork's Avatar
 
True Techie

Join Date: Oct 2006

Posts: 181

saladfork

Default Obnoxious frameset borders

So basically, I made a site consiting of pretty much only framesets. Unfortunately, it seems that i cant seem to change the bars that, if allowed, allow the user to resize the framesets.

Heres my code for the index -

Code:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
	<head>
		
		<meta name="TSA" content="Washington TSA, Pasco TSA, Pasco TSA Chapter, Pasco Bulldogs" />
		<title>Pasco TSA</title>
	</head>
	<frameset cols="*,186px, 700px" marginwidth="0" marginheight="0">
	<frame name="blankframe" scrolling="no" noresize  src="blankframe/blank.html">
	<frame name="leftframe" scrolling="no" noresize src="leftframe/left.html">

	<frameset rows="47,20,376" cols="*" marginwidth="0" marginheight="0">
	<frame name="topframe" scrolling="no" noresize src="topframe/top.html">
	<frame name="navframe" scrolling="no" noresize src="navframe/nav.html">
	<frame name="contentframe" scrolling="yes" noresize src="contentframe/content.html">
	</frameset>
	
	</frameset><noframes></noframes>
	
</html>
So yea... anyone knows how i can adjust those annoying bars which can be seen in the pic i will attatch?... although, I must admit, in opera the bars look pretty snazzy lol.
Attached Images
 
saladfork is offline  
Old 05-15-2007, 04:15 PM   #2 (permalink)
 
Monster Techie

Join Date: May 2004

Location: Tucson, AZ, USA

Posts: 1,183

Vormund

Send a message via AIM to Vormund Send a message via MSN to Vormund Send a message via Yahoo to Vormund
Default Re: Obnoxious frameset borders

I think these are the magic keys you're looking for:

framespacing="0"
border="0"

Which would go in the <frameset> tag...
__________________
Vormund is offline  
Old 05-15-2007, 08:02 PM   #3 (permalink)
saladfork's Avatar
 
True Techie

Join Date: Oct 2006

Posts: 181

saladfork

Default Re: Obnoxious frameset borders

I coudlve sworn ive tried those before.. letsasee :]

...

Works it does indeed :]

Although the border seems to still be there in ie7, while not as big, they are still there =[
saladfork is offline  
Old 05-16-2007, 02:26 PM   #4 (permalink)
 
Monster Techie

Join Date: May 2004

Location: Tucson, AZ, USA

Posts: 1,183

Vormund

Send a message via AIM to Vormund Send a message via MSN to Vormund Send a message via Yahoo to Vormund
Default Re: Obnoxious frameset borders

Hmm, here's another one to try:

frameborder="0"

Quote:
frameborder
This attribute tells the browser to render a border on the frames or
not. It can have a value of 0 or 1. 0 = hide borders, 1 = show
borders
From Frameset Borders - alt.html | Google Groups

Silly frames.
__________________
Vormund is offline  
Old 05-16-2007, 11:53 PM   #5 (permalink)
saladfork's Avatar
 
True Techie

Join Date: Oct 2006

Posts: 181

saladfork

Default Re: Obnoxious frameset borders

Ahh! Success, most thanks.

These frames can be quite frusterating but I think I can apply what I learned in other sites :]
saladfork is offline  
Old 05-17-2007, 04:48 PM   #6 (permalink)
 
Monster Techie

Join Date: May 2004

Location: Tucson, AZ, USA

Posts: 1,183

Vormund

Send a message via AIM to Vormund Send a message via MSN to Vormund Send a message via Yahoo to Vormund
Default Re: Obnoxious frameset borders

Quote:
Originally Posted by saladfork View Post
Ahh! Success, most thanks.

These frames can be quite frusterating but I think I can apply what I learned in other sites :]
Glad it works! And I agree completely - it'd be nice if they'd all just conform to one set of standards...w3c's, perhaps!
__________________
Vormund is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On