Popular Searches: FrontPage Hosting | FrontPage Templates | FrontPage Training | Free FrontPage

Page Links are still underlined   Logged in as: Guest
  Printable Version
All Forums >>FrontPage Specific Issues >>FrontPage Newbies >> Page: [1]
Name:
Message<< Newer Topic  Older Topic >>

fotoman

Posts: 100
Member since: 9/24/2002
From: United Kingdom

Page Links are still underlined 

For some reason recently, on a couple of my pages the links have now become underlined when I do not want them underlined.

HTML Style coding in the Header is exactly the same as those in other pages where the Page Link is not underlined.

The only difference I can see is that the pages in question are suffixed .shtm because of "server side includes". But this has only just started happening?

Obviously I'm missing something here that I hope you may be able to help with.

Cheers
Fotoman


_____________________________

Crime Pays...
Unless you're a motorist!
  Report Abuse |  Date: 9/9/2008 11:30:31 AM

Malcolm

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

RE: Page Links are still underlined (in reply to fotoman

url would be helpful !!


_____________________________

~~ Malc ~~
  Report Abuse |  Date: 9/9/2008 1:38:22 PM

fotoman

Posts: 100
Member since: 9/24/2002
From: United Kingdom

RE: Page Links are still underlined (in reply to fotoman

Apologies!
This page has links underlined: http://www.calcotpark.com/members.shtm
This page does not: http://www.calcotpark.com/index.htm


_____________________________

Crime Pays...
Unless you're a motorist!
  Report Abuse |  Date: 9/9/2008 3:08:18 PM

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 ~~
  Report Abuse |  Date: 9/10/2008 12:42:22 AM

fotoman

Posts: 100
Member since: 9/24/2002
From: United Kingdom

RE: Page Links are still underlined (in reply to fotoman

Thanks for those pointers Malc. Looks like I need a bit of updating as well!
I'll have a look at upgrading to Expression Web and take it from there.
One thing I have got is time, as I only do this site as a favour.

Thanks again

Fotoman


_____________________________

Crime Pays...
Unless you're a motorist!
  Report Abuse |  Date: 9/10/2008 10:29:55 AM
Page:   [1]
All Forums >>FrontPage Specific Issues >>FrontPage Newbies >> Page: [1]
Jump to:

New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts



Forum Software powered by ASP Playground Advanced Edition 2.0.5
Copyright © 2000 - 2003 ASPPlayground.NET

0.234375