
Malcolm
Posts: 422
Member since: 9/30/2002
From: Texas,USA

|
RE: Page Links are still underlined (in reply to fotoman)
|
|
|
To be honest your code is a mess. You have tried to use CSS in the head tags, BODY {background: #ffffff} body { background-image: url('3-mages/') } (what image???) BODY {font-family:Trebuchet MS} BODY {color:#000000} Then in the body tag you have added non browser friendly margin settings <body leftmargin="0" topmargin="3"> All that can be condensed into this: body { margin: 3px 0 0 0; background-image: url('3-mages/image.jpg') background-color: #fff; font-family: 'trebuchet ms'; arial; sans-serif; color: #000; } and put into an external stylesheet But you then go on to give tons of inline styling to the content of your site. That is not really browser compatible. i.e. all this: <font size="2" face="Verdana" color="#0000FF"><b><a href="hibernian.htm">Click Here for Details</a></b></font></p> The font size, font family, color, bold .. that should all be in a stylesheet and not on the page. You need a doctype for your pages also. You have then copied and pasted from an email, pasting a lot of really bad formatting that has been picked up from the email ... all this (and a lot more I have not shown): ---------------------------------- <!-- saved from url=(0022)http://internet.e-mail --> <html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"> <head> <meta http-equiv=Content-Type content="text/html; charset=windows-1252"> <meta name=ProgId content=Word.Document> <meta name=Generator content="Microsoft Word 9"> <meta name=Originator content="Microsoft Word 9"> <link rel=File-List href="http://www.calcotpark.com/latest_files/filelist.xml"> <title>Latest News for Memebers</title> <!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Author>System</o:Author> <o:LastAuthor>System</o:LastAuthor> <o:Revision>20</o:Revision> <o:TotalTime>24</o:TotalTime> <o:Created>2008-05-30T10:58:00Z</o:Created> <o:LastSaved>2008-08-06T13:11:00Z</o:LastSaved> <o:Pages>1</o:Pages> <o:Characters>5</o:Characters> <o:Lines>1</o:Lines> <o:Paragraphs>1</o:Paragraphs> <o:CharactersWithSpaces>6</o:CharactersWithSpaces> <o:Version>9.2720</o:Version> </o:DocumentProperties> </xml><![endif]--> <style> <!-- /* Font Definitions */ @font-face {font-family:Verdana; panose-1:2 11 6 4 3 5 4 4 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:536871559 0 0 0 415 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline; text-underline:single;} a:visited, span.MsoHyperlinkFollowed {color:blue; text-decoration:underline; text-underline:single;} --------------------------------- and you end that pasting with closing tags .... NOTE:: the CSS in all that .. it is telling your links to be underlined !!!! That is where your page is going wrong. You cannot go and copy and paste from either an email or another webpage without first pasting into, say Notepad, i.e. a text editor, which will strip all the formatting off the pasting. Then you can copy from notepad and paste into your webpage. But also look at the bad coding, that doesnt even resemble html ..... I suggest, if you are unable to tidy up coding, i.e. get rid of all the inline styling and put it into a stylesheet and then make sure further edits are not styled on the page but via the stylesheet, that you upgrade to Expression Web. That will do all the styling for you. You would have to start again, as it wont correct what you have already done, but it will do it right in the first place. FrontPage is a very dated program now. Fine if you know what you are doing, know how to code and just use FP as a convenient tool, you can then get a very passable website out of it as long as you help it along. But if you dont know coding, or how to apply CSS then if you are wanting any sort of professinal website that will view in the most popular browsers and be SE friendly, then upgrade to EW and start again, it would pay you in the long run. So what you need to do now is remove all that code you pasted from the email, paste it into notepad, recopy from notepad then paste back into your webpage. That will strip the formatting from it and your normal links will work again.
< Message edited by Malcolm -- 9/10/2008 12:44:04 AM >
_____________________________
~~ Malc ~~
|
|