bgsound src="http://url.com/file.mp3" loop="infinite" autostart="true"
Also, do not use img with bgsound otherwise you will get an error message saying you can't use img that way.
Rule of thumb: do not have quotes enclose an = sign in your HTML unless you know why you are doing it.
Do you see how the quotes enclose the = sign before the word 'true'?
bad: loop="infinite autostart=true"
The same problem happens here:
bad: td align="center valign=middle"
Do you see how the quotes enclose the = sign before the word 'middle'?
It should be:
td align="center" valign="middle"
|
If your code is like:
#n, #nst, #ol, #m, #mb, #ban, .ban, object, input, form, .nst, .hdr{display: none;}
Just remove the invalid words so that you would have:
#n, #nst, #ol, #m, #mb, #ban, .ban,.nst, .hdr{display: none;}
If your code is like:
object, input, form{display: none;}
Then just remove the entire line.
|