hyperlink underlining

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

Guest

When using DWT's is it possible to create a hyperlink text with the following
actions:

1.Action: not being rolled over - Style: to be without an underline.
2.Action: when rolled over - Style: to be underlined with or without text
colour change.

The rollover option is not available when using DWT's, any other way of
doing it, a code maybe?

Also when using a non-DWT page the rollover option is available but the
underline command when hovering is not possible, this seems strange that it
cannot be done.

Can anyone offer any advice of how to do this when using DWT's and also when
not using any page theme/dwt.

thanks in advance.

Ian.J.H


(As a novice I have learn't more from this forum than fom any other method,
keep up the good work)
 
Yes you can with a little CSS

In the head B4 the </head> copy and paste -

<style type="text/css">
<!--
a {
background-color: transparent;
font: normal "Times New Roman", Times, serif;
text-decoration: none;
color: #000088;
}

a:link {
background-color: transparent;
color: #000088;
}

a:visited {
background-color: transparent;
color: #000000;
}

a:hover {
background-color: transparent;
color: #FF0000;
text-decoration: underline;
}
-->
</style>

You can change the colors or font to suit...

This will give you the underline when the mouse is over the link and change
the color to red..

bob

| When using DWT's is it possible to create a hyperlink text with the
following
| actions:
|
| 1.Action: not being rolled over - Style: to be without an underline.
| 2.Action: when rolled over - Style: to be underlined with or without text
| colour change.
|
| The rollover option is not available when using DWT's, any other way of
| doing it, a code maybe?
|
| Also when using a non-DWT page the rollover option is available but the
| underline command when hovering is not possible, this seems strange that
it
| cannot be done.
|
| Can anyone offer any advice of how to do this when using DWT's and also
when
| not using any page theme/dwt.
|
| thanks in advance.
|
| Ian.J.H
|
|
| (As a novice I have learn't more from this forum than fom any other
method,
| keep up the good work)
 
Back
Top