oberon
|
| Posted: 07/31/2002, 8:18 PM |
|
Hi
can anyone tell me how to get rid of underlining that codecharge puts under hyperlinks?
I have set the link in my stylesheet to not have it but pages generated in codecharge all have it still
any help appreciated
|
|
|
 |
teknofile
|
| Posted: 07/31/2002, 10:05 PM |
|
Have you redefined the tag in your own stylesheet, or in the stylesheet generated by CCS ?
From your description, it sounds as if your stylesheet's being superseded by CCS's.
|
|
|
 |
oberon
|
| Posted: 07/31/2002, 10:34 PM |
|
yes I have defined it in my stylesheet and in the generated stylesheet that codecharge generates it doesn't have the hyperlink definition so I added it but still does not make a difference the underlining is still there
|
|
|
 |
teknofile
|
| Posted: 08/01/2002, 2:08 AM |
|
Can you provide the css files so I can see how the tag's been redefined ?
|
|
|
 |
oberon
|
| Posted: 08/01/2002, 4:01 PM |
|
This is my css (I only included relevant part)
A:link {font-family: Arial, Helvetica, sans-serif;
color:#0000FF;}
A:active {font-family: Arial, Helvetica, sans-serif;
color:#3399FF;}
A:visited {font-family: Arial, Helvetica, sans-serif;
color:#993366;}
and this is codecharge's generated css
.PageBODY {background-color: #FFFFFF; color: #FFFFFF; font-family: Arial}
.FormTABLE {width:100%}
.FormHeaderTD {background-color: #282d73; text-align: Center; border-style:outset; border-width: 0}
.FormHeaderFONT {font-size: 12pt; color: #e2d342; font-weight: bold}
.FieldCaptionTD {background-color: #D6D6D6; color: #000000; border-style:0; border-width: 1px}
.FieldCaptionFONT {font-size: 10pt; color: #000000; font-family: Arial}
.DataTD {background-color: #F3F3F3; color: #000000; border-style: null; border-width: 0px#EFEFEF#EFEFEF#EFEFEF}
.RecordSeparatorTD {background-color: #FFFFFF; color: #000000; border-width: 1px}
.DataFONT {font-size: 10pt; color: #000000; font-family: Arial}
.ColumnFONT {font-size: 10pt; color: #000000; font-weight: bold}
.ColumnTD {background-color: #CCCCCC; border-style: inset; border-width: 0}
There isn't a definition for hyperlinks so I appended my own to the bottom of this file but it seems to ignore it.
|
|
|
 |
teknofile
|
| Posted: 08/04/2002, 3:30 PM |
|
If the snippet you provided is all that there is, it would appear that you need to add text-decoration: none to your style for links.
|
|
|
 |
oberon
|
| Posted: 08/06/2002, 6:45 PM |
|
thanks so much for ur response. It got rid of the underlining but there is a small prob it also got rid of the different colors denoting that its a link like on hover changing color etc
Do you know how to get around this?
|
|
|
 |