|
If you don't want any white around your parchment background, then change the color you have set on the body to something besides white.
You have lots of problems there;
1 - you've got just about everything set to position:absolute - this in itself causes problems. Learn to use the normal document flow and floats and all that positioning won't be necessary.
2- You've put your navigation in a TABLE ?? WHY ? To top it off, your table isn't even correct ! You've got NO <table> and no table rows <tr> - that's just bad coding. Besides you don't need them, use an unordered list for your navigation.
3 - <font> tags ??? GAAAHH.. you should use CSS to specify STYLING on text, including the font.
4 - You've got text, but nothing inside paragraphs - your text should be wrapped in <p></p> tags.
5 - font-weight: italic is invalid - 'italic' is NOT a font-weight
6 - You've got all kinds of errors in your coding, html and CSS. CSS is case-sensitive= 'nav' is NOT the same as 'nAV' and it will NOT work.
7 - Get rid of all the <br>s and use padding margin to space PARAGRAPHS - that is, after you put your text inside <p> tags in the first place.
8 - There is no such tag as <left>.
9 - dump the <center> tags too -- use CSS to center things - including the layout.
10 - "majik" as a font will ONLY work if users have that font on their machines, otherwise all they'll see is a substitution - like Arial.
Clean up your coding and you'll have better luck.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|