Still having problems with underline hyperlinks

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

Guest

I added <style> a(text-decoration:none) </style>
right after the head section in the html view. Do I need to save it for it
to show up without the lines. I don't get it, it doesn't work for my site.

Also tried to apply the style sheet without any success. Could you explain
this one in more detail? Thanks a lot!
 
you have to type it exactly as it was given to you. you need to use curly braces, not parens.


| I added <style> a(text-decoration:none) </style>
| right after the head section in the html view. Do I need to save it for it
| to show up without the lines. I don't get it, it doesn't work for my site.
|
| Also tried to apply the style sheet without any success. Could you explain
| this one in more detail? Thanks a lot!
 
Two possible things:

Try changing the opening style tag to:
<style type="text/css">

Make sure that the a(text-.... are not using parenthesis. Style definitions
use curly braces { } instead of paranthesis ()

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
<HTML>
<HEAD>
....... meta, title, etc. ......
<STYLE>
<!--
A { text-decoration: none }
-->
</STYLE>
</HEAD>


_____________________________________________________________
B&D Technologies
http://www.bd-tech.com
Antoni Biliardis - antoni(at)bd-tech.com

Anne wrote, On 10/25/2004 19:17:
 
ur welcome.

I like curly fries better than braces but they don't work with css either :-)



| Thanks so much that did it!!! I didn't see the curly braces at first!
|
| "Rob Giordano (aka: Crash Gordon®)" wrote:
|
| > you have to type it exactly as it was given to you. you need to use curly braces, not parens.
| >
| >
| > | I added <style> a(text-decoration:none) </style>
| > | right after the head section in the html view. Do I need to save it for it
| > | to show up without the lines. I don't get it, it doesn't work for my site.
| > |
| > | Also tried to apply the style sheet without any success. Could you explain
| > | this one in more detail? Thanks a lot!
| >
 

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