Ok
The last thing for today to sort is the following.
The page loads but you can scroll the page still BUT i dont see a reason as to why as there is no padding etc to allow this.
Ok
The last thing for today to sort is the following.
The page loads but you can scroll the page still BUT i dont see a reason as to why as there is no padding etc to allow this.
Hi there theremotedr,
I am not sure what you mean.
With my browser, the vertical scrollbar does not disappear until the window is about 500px wide.
coothead
~ the original bald headed old fart ~
What I mean is,
Why can you even scroll down the page anymore.
There isn’t anything to see.
Below the blinking text I have say 2 inches of extra page ?
I would expect there to be say 20px after the blinking text then that’s it.
Did I explain right ?
Hi there theremotedr,
OK, now I am on your wavelength.
The cause of that space is...
...in the "demo.css" file.Code:.content{ margin: 0px 25px 30px 25px; }
So just use...
While we are there, I will point out that defining units for zero - ( 0 ) - values is unnecessary.Code:.content{ margin: 0 25px; }
This is because 0px = ( 0pt = 0em = 0rem = 0vw = 0vh = 0% ) etc = 0.
coothead
~ the original bald headed old fart ~
Great.
I will edit that shortly.
In another post say Thursday we spoke about the odd , etc missing would stop a script from running.
A member mentioned using a tool called Lint of which it would find errors in a css file.
Well you mention 0 above, this relates to the tools reply on the css file of whichbit came back with,
Values of 0 shouldn't have units specified.
So how is the correct way to write padding:0px 5px 0px 5px;
But you forgot to change this...
...to this...Code:.content{ margin:0px 25px 30px 25px; }
...to address your problem...Code:.content{ margin:0 25px; }
...in your post #23Below the blinking text I have say 2 inches of extra page ?
I would expect there to be say 20px after the blinking text then that’s it.
coothead
~ the original bald headed old fart ~
Bookmarks