Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
A very simple html problem :- ( please help )
Old 06-29-2005, 06:20 AM A very simple html problem :- ( please help )
Novice Talker

Posts: 9
Trades: 0
Dear amigo's, and muchacho's.
Can someone please help me to solve a very simple problem.
The following html code produces a single orange sheet :-

<body bgcolor="orange" topmargin="0" leftmargin="0"
rightmargin="0" bottommargin="0" border="0"
cellpadding="0" cellspacing="0" width="100%" height="100%" >
</body>

However I can't seem to get rid of the 'ghosted' vertical scroll bar on the right side.
Can someone please give me guidance ?



Thanks, Angelo.
ANGELO DUNDEE is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-29-2005, 07:04 AM
weirdgear's Avatar
Novice Talker

Posts: 10
Location: Essex, England (UK)
Trades: 0
Hello Angelo,

Try this;

<html>
<body bgcolor="orange" topmargin="0" leftmargin="0"
rightmargin="0" bottommargin="0" border="0"
cellpadding="0" cellspacing="0" width="100%" height="100%">
<script language="JavaScript">
<!--
document.body.style.scrollbarBaseColor='orange'
document.body.style.scrollbarArrowColor='orange'
document.body.style.scrollbarDarkShadowColor='oran ge'
document.body.style.scrollbarFaceColor='orange'
document.body.style.scrollbarHighlightColor='orang e'
document.body.style.scrollbarShadowColor='orange'
-->
</script>
</body>
</html>

Let me know if it this is what you mean.

Weirdgear - Dave
weirdgear is offline
Reply With Quote
View Public Profile
 
Old 06-29-2005, 07:09 AM
weirdgear's Avatar
Novice Talker

Posts: 10
Location: Essex, England (UK)
Trades: 0
Correction. There shouldn't be any gaps in the word 'orang e' ;

<html>
<body bgcolor="orange" topmargin="0" leftmargin="0"
rightmargin="0" bottommargin="0" border="0"
cellpadding="0" cellspacing="0" width="100%" height="100%">
<script language="JavaScript">
<!--
document.body.style.scrollbarBaseColor='orange'
document.body.style.scrollbarArrowColor='orange'
document.body.style.scrollbarDarkShadowColor='oran ge'
document.body.style.scrollbarFaceColor='orange'
document.body.style.scrollbarHighlightColor='orang e'
document.body.style.scrollbarShadowColor='orange'
-->
</script>
</body>
</html>
weirdgear is offline
Reply With Quote
View Public Profile
 
Old 06-29-2005, 09:52 AM re : weirdgear
Novice Talker

Posts: 9
Trades: 0
Weirdgear, thanks alot for your help, I really appreciate it, and need it.

Unfortunately your response is not what I really want.
Your solution changes the colour of the right vertical scroll bar, from white to orange.
Whereas I am trying to get rid of this scroll bar completely.

Any more ideas ?

Thanks alot, Dundee.

ANGELO DUNDEE is offline
Reply With Quote
View Public Profile
 
Old 06-29-2005, 10:16 AM
fancymoustache's Avatar
Ultra Talker

Posts: 316
Location: Michigan
Trades: 0
<body scrollbar="no">

You can put yes (always scrollbar), no (never scrollbar) and auto (scrollbar when content goes further than page) for the scrollbar values.

I can't remember whether scrollbar="" or scroll="" is the correct HTML for that, but either works, if you're not worried about valid HTML.


Micah

Last edited by fancymoustache; 06-29-2005 at 10:35 AM..
fancymoustache is offline
Reply With Quote
View Public Profile
 
Old 06-29-2005, 10:21 AM
weirdgear's Avatar
Novice Talker

Posts: 10
Location: Essex, England (UK)
Trades: 0
Did you get rid of the gaps in the word 'orang e' and change to 'orange'?

How about opening the page in a page 'pop up' window, the scrollbars are usually removed. I have done this before using Dreamweaver 4. Perhaps you could try that out.
weirdgear is offline
Reply With Quote
View Public Profile
 
Old 06-29-2005, 10:31 AM
fancymoustache's Avatar
Ultra Talker

Posts: 316
Location: Michigan
Trades: 0
Quote:
Originally Posted by ANGELO DUNDEE
<body bgcolor="orange" topmargin="0" leftmargin="0"
rightmargin="0" bottommargin="0" border="0"
cellpadding="0" cellspacing="0" width="100%" height="100%" >
</body>
I might suggest that you get rid of width="100%", height="100%", and border="0", cellpadding="0" and cellspacing="0", as they pertain to tables and such. So, I'm suggesting you put this in, instead:

HTML Code:
<body bgcolor="#FF9900" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" scroll="no">
or better yet

HTML Code:
<style type="text/css">
<!--
body {
	background-color:#FF9900;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
-->
</style>
<body scroll="no">
The above uses CSS instead. If you're looking to validate your page(s), CSS is helpful because you run into less errors. Sorry, I'm not sure there is a CSS attribute for scrolling.


Hope it helps,
Micah

Last edited by fancymoustache; 06-29-2005 at 02:58 PM..
fancymoustache is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to A very simple html problem :- ( please help )
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.75677 seconds with 12 queries