Named Anchor makes TEXT Bold ??

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

Guest

Hello,

I created a Hyperlink to a different page, then placed a named anchor onto
it. It works fine except the TEXT in the other page where the tag resides is
BOLD.
Example: Product is on Page 4.htm like this:
Product XYZ
Price $2.29
MY ANCHOR TAG IS:
<p>Product XYZ<a name="xyz">Price $2.29</a></p> The bold part is Price $2.29
If I put tag in front of Product XYZ both items appear in bold. Thanks, LIZ
 
The anchor takes its styles from the way you style all the other links
on the page.
For this, use something like:

<p>Product XYZ<a name="xyz" style="font-weight: normal;">Price
$2.29</a></p>

Or you could use this (does not work in early browsers such as Netscape
4):

<p id="xyz"> Product XYZ Price $2.29</p>

The link will find the <p id="xyz"> Note that will only work in modern
browsers (Netscape 6+, FireFox, Safari, IE5.5 and later)
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp

FrontPage Support: http://www.frontpagemvps.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top