Hyperlink text size.....

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have done about 10 pages with tables and graphics. Now that I am filling in
the content I am having trouble with text hyperlinks.

I make a text link and when I go to save and view it the size changes from 3
to 2 automatically, even though all the tags say that it should be size 3. I
have no idea what is causing this. Anyone know what I am doing wrong?

Thanks a bunch,
Frank
 
I take it you are using something like this:

<p><a style="font-size: 18pt; font-weight: bold"
href="http://www.bbc.co.uk">BBC</a></p>

Alternatively, could you post your code for us to see what is wrong.

Thanks
 
Here is the code for this line:

<td height="30" colspan="2"><div align="center"><font face="Arial,
Helvetica, sans-serif" size="2">Please<a href="contact.html">contact</a> us
if you have any questions.</font></div></td>

When I save this and then preview it or go to the live website the "contact"
text is size 1, not the 2 that is specified in the code.

Thanks
 
Are you using a style sheet or theme that has hyperlink formatting settings

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Here is the code for this line:
|
| <td height="30" colspan="2"><div align="center"><font face="Arial,
| Helvetica, sans-serif" size="2">Please<a href="contact.html">contact</a> us
| if you have any questions.</font></div></td>
|
| When I save this and then preview it or go to the live website the "contact"
| text is size 1, not the 2 that is specified in the code.
|
| Thanks
|
| "ANONYMOUS" wrote:
|
| >
| > I take it you are using something like this:
| >
| > <p><a style="font-size: 18pt; font-weight: bold"
| > href="http://www.bbc.co.uk">BBC</a></p>
| >
| > Alternatively, could you post your code for us to see what is wrong.
| >
| > Thanks
| >
| >
| > nilmerg wrote:
| > >
| > > I have done about 10 pages with tables and graphics. Now that I am filling in
| > > the content I am having trouble with text hyperlinks.
| > >
| > > I make a text link and when I go to save and view it the size changes from 3
| > > to 2 automatically, even though all the tags say that it should be size 3. I
| > > have no idea what is causing this. Anyone know what I am doing wrong?
| > >
| > > Thanks a bunch,
| > > Frank
| >
 
I took over from someone else and it looks like there are only style sheets
and those have the correct sizes and fonts listed. Is there any way to look
for a theme?

Thanks
Frnk
 
It's set at medium, but would that have any effect on why the the code is
showing up as 2 different sizes when I am telling it to only be 1 size?

Thanks.
 
Kathleen,

Here's the stylesheet:

body { font-family: arial, helvetica, sans-serif; font-size: 11px; color:
000000 }

td { font-family: arial, helvetica, sans-serif; font-size: 10px; color:
000000; line-height: 1.4; }


..subheader { font-family: arial, helvetica, sans-serif; font-size: 12px;
color: 000000; }


a:link {color: FBEED0; font-family: verdana, arial, helvetica, sans-serif;
font-weight: normal; font-size: 10px; text-decoration: underline}

a:visited {color: FBEED0; font-family: verdana, arial, helvetica,
sans-serif; font-size: 10px; text-decoration: underline}

a:active {color: #ffffff; font-family: verdana, arial, helvetica,
sans-serif; font-size: 10px; text-decoration: underline}

a:hover {color: #ffffff; font-family: verdana, arial, helvetica,
sans-serif; font-size: 10px; text-decoration: underline}
 
Back
Top