I have a site that I am working on for DragonFly and I want to stop the page from Scrolling.. at the moment there is not much there but the homepage needs to not scroll off the bottom of the screen.
Thanks in advance for any help :)
Chris
Printable View
I have a site that I am working on for DragonFly and I want to stop the page from Scrolling.. at the moment there is not much there but the homepage needs to not scroll off the bottom of the screen.
Thanks in advance for any help :)
Chris
You can disable scrolling by adding this to your document body SCROLLING=NO (or it could be a SCROLL=no cant remember) but I beleive this only works in Internet Explorer???
hmmm well I just don't know where to put the SCROLLING= NO thats the problem.. cause its only a little test site to see if she likes the design.. but it may still be used (just improved upon), so it would be nice to get rid of the scrolling on the homepage.
The homepage was made using Fireworks.. Not the most useful in the world.. but it gets a design done quickly. :)
Chris
hi,
This is very simple code just insert the body tag scroll="no"
as like
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll="no">
byeeeeeeeeeee!
dp
Sorry, it goes in the <body> tag.
<body scrolling="no"> or <body scroll="no">
And maybe put it all in a table and set the table height to 100% ...
eg
Code:<body scroll="no" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
<table border="0" cellpadding="0" cellspacing="0" width="100%" height ="100%">
I will have to work out the table.. as it is gonna be complicated as hell.. :P
But I have got the no scroll now :D which is a start..
Now to think of the tables .. hmm :p
Cheers for all your help
Chris