February 8, 2005 at 12:34 am
Hi All,
I am looking for the hyperlink behavior on 'Hyperlink' action. that is I should get an underline on mouse hover on the link. I dont want the link to be underlined all the time.
Let me know if you know anythig about this.
Thank a lot,
Alok
February 11, 2005 at 8:00 am
This was removed by the editor as SPAM
February 16, 2005 at 8:28 am
Just a wild guess but maybe you have to put something in the format Expression box. Having siad that not sure if it will support the moseover event?? Anyone......
February 20, 2005 at 4:20 pm
Well, if you are rendering in HTML format, you could try including a cascading style sheet in the output. The CSS must include styles like those shown below:
A:link {
text-decoration: none;
color: #3333cc;
}
A:visited {
text-decoration: none;
color: #333399;
}
A:active {
text-decoration: none;
color: #333399;
}
A:hover {
text-decoration: underline;
color: #3333cc;
}
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply