Center tags are not valid code in xHTML. However I want to center some links in the page but not the whole page. How would I be able to do this?
Try using <div> instead of <center> tags. Just replace any <center> tags. Your code should look like this: <div style="text-align: center;">"put your content here" </div> Hope this helps mate. Let me know if any more help is needed!
Cant see it there... Can you point it out? There seem to be 8 errors on the page, none of them seem to be related to the align command...
Sorry for the delay mate. Had to do some stuff... Thats quite easy to solve. xHTML doesnt allow css declarations inside the <body> of a file. So you have to define the css-markup separately in the <head>. For your case just add <style type="text/css"> #align { text-align: center; } </style> into the <head></head> section. and change <div style="text-align: center;"><a href="/history/intro/">PokeProject Inspiration</a> | <a href="/history/forums/">Forums History</a> | <a href="/history/websites/">Websites History</a></div></p> to <div id="align"><a href="/history/intro/">PokeProject Inspiration</a> | <a href="/history/forums/">Forums History</a> | <a href="/history/websites/">Websites History</a></div></p> [EDIT] Oh I see, you sorted it out already! Cool! Good luck with your site! [/EDIT]
You mean how to insert symbols? If I understand you right then this might be of help. Cant provide a life link... lol You just need to insert something called character references instead of the actual symbol. Just research it on google. ' = apostrophe " = quote < = > > = < if i remember right