• The new WDWMAGIC iOS app is here!
    Stay up to date with the latest Disney news, photos, and discussions right from your iPhone. The app is free to download and gives you quick access to news articles, forums, photo galleries, park hours, weather and Lightning Lane pricing. Learn More
  • Welcome to the WDWMAGIC.COM Forums!
    Please take a look around, and feel free to sign up and join the community.

HTML help needed

Invero

Well-Known Member
Original Poster
Hey all, I have a question to ask to those who are HTML gurus.

My webpage is set up with frames. (Yes, I know, frames are bad, blah blah blah) Most of the pages load just fine. However, a few of the pages (including my main page) load with an unneccessary horizontal scroll bar at the bottom. How do I get rid of that??

(It only shows up in IE, not Firefox)

www.fricknfrack.net is the link

Thanks!
 

doop

Well-Known Member
Hmmm, I got it to load just fine and there was no horizontal scroll bar. I am using opera by the way.
 

ogryn

Well-Known Member
The only frame scrollbar settings are on/off/auto


I'm guessing it is something to do with the CSS in blogger.html, that IE is interpretting differently to the other browsers (there's a suprise :rolleyes: )

As for what, I'm at a bit of a dead end, I've tried switching round values, but to no luck.
 

Invero

Well-Known Member
Original Poster
ogryn said:
The only frame scrollbar settings are on/off/auto


I'm guessing it is something to do with the CSS in blogger.html, that IE is interpretting differently to the other browsers (there's a suprise :rolleyes: )

As for what, I'm at a bit of a dead end, I've tried switching round values, but to no luck.
It happens on all my other pages too, the only way I was able to get rid of it was by deleting the !DOCTYPE at the beginning. But if I do that with the blog, everything goes haywire.

Oh well... maybe I'll just have to do something drastic. Thanks anyhoo :)
 

Testtrack321

Well-Known Member
Invero said:
Hey all, I have a question to ask to those who are HTML gurus.

My webpage is set up with frames. (Yes, I know, frames are bad, blah blah blah) Most of the pages load just fine. However, a few of the pages (including my main page) load with an unneccessary horizontal scroll bar at the bottom. How do I get rid of that??

(It only shows up in IE, not Firefox)

www.fricknfrack.net is the link

Thanks!

Thruthfully, if you make the top and side frames smaller, they would actually help the site. Also it works fine in Firefox for me. As for the hoizontal scroll bar, it didn't show up for me, I'm on a Win 2000 laptop running Firefox 1.0 final release.
 

Invero

Well-Known Member
Original Poster
Yeah, Firefox it works fine... it only shows up in the crappy browsers. Oh well, I should ditch the frames somehow anyways.
 

ogryn

Well-Known Member
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Frick 'n' Frack</title>
<style type="text/css">
<!--
body {
	background-color: #000000;
}

#footerm {
	background-color: #003466;
	height: 20px;
	width: 100%;
	color:#FFFFFF;
	text-align:center;
}
#headm {
	background-color: #003466;
	height: 105px;
	width: 100%;
}

#menum {
	background-color: #003466;
	height: 480px;
	width: 8%;
	float: left;
}
#contentm {
	background-color: #000000;
	height: 470px;
	margin: 0px 0px 0px 0px;
	padding: 5px;
	border-right:5px solid #003466;
	overflow: auto;
	color: #FFFFFF;
}
-->
</style>

</head>

<body>
<div id="headm" align="center">
	<img src="fnftitle.jpg" alt="FricknFrack logo" title="Welcome To Frick 'n' Frack"/>
</div>

	<div id="menum">
		<img src="home_down.jpg" />
	</div>
	
	<div id="contentm">
<p>Content Goes Here </p>
 
 </div>		
<div id="footerm">
&copy; 2004
</div>
</body>
</html>

gives you something very similar, except done without frames. It uses CSS instead.
 

Figment1986

Well-Known Member
Frames are BAD!!!! Even my Webmaster class said so........ And it is a public school.....

(I cant wait till i get to XHTML... just finnished HTML basic...)
 

Register on WDWMAGIC. This sidebar will go away, and you'll see fewer ads.

Back
Top Bottom