Remove the line under hyperlink

Hi

How do I remove the line underneath my hyperlinks ? is it by default there ? or can I remove it some how? or do I need to create buttons as text in fireworks

Regards
Melissa

text-decoration:none

In your css file, you need to add:

a {
  text-decoration: none;
}

This may help:

Nadia

Thank you