hyperlink underlining

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)
 
B

Bob

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)
 

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

Top