SunChika_16
11-22-2003, 10:35 PM
Hi.
I inserted the htc file on my main whatever, and put the code into my external style sheet. Angelfire had no prob with uploading it. But I can't get it to work. Does the actual links themselves have to have some special code before it? What? I'm confused here.
Any help would be greatly appreciated here.
kittycat
11-23-2003, 12:55 AM
Do you know for sure if Angelfire supports the .htc extension?
If you could post the current CSS code that you have it would be helpful in seeing if there's anything wrong or that you need to add.
MaGiCSuN
11-24-2003, 03:10 PM
this is what i found as an example on a microsoft help page:
<HEAD>
<STYLE>
LI {behavior:url(hilite.htc)}
</STYLE>
</HEAD>
<P>Mouse over the two list items below to see this effect.
<UL>
<LI>HTML Authoring</LI>
<LI>Dynamic HTML</LI>
</UL>
that <style></style> code is for the .htc file. what you put in front is where it shoudl work for, so in this case it's <LI> tag. I found it here:
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/behaviors/howto/creating.asp
not sure if this will help you. if not, post the whole css coding you have between the <head> and </head> like Kittycat asked so we can take alook at it.
Love,
Mirna
SunChika_16
11-26-2003, 05:25 AM
This is my external style sheet, titles "mystylesheet.css"
A:link { text-decoration: none; color:#3366FF; }
A:visited { text-decoration: none; color:#00CC99; }
A:active { text-decoration: none; color:#3366FF; }
A:hover { text-decoration: none; color:#000000; cursor:move; }
background-color: #FFFFFF;
h1 {font-family: verdana;
color: navy; }
p {font-family: verdana; color: navy; }
p.dotted {border-style: dotted; border-color: #33CCFF }
p.dashed {border-style: dashed; border-color: #33CCFF }
p.solid {border-style: solid; border-color: #33CCFF }
p.double {border-style: double; border-color: #33CCFF }
p.groove {border-style: groove; border-color: #33CCFF }
p.ridge {border-style: ridge; border-color: #33CCFF }
p.inset {border-style: inset; border-color: #33CCFF }
p.outset {border-style: outset; border-color: #33CCFF }
body
{ background: #FFFFFF;
font-family: verdana;
color: navy ;
letter-spacing: 0pt;
font-weight: normal;
font-size: 10 pt;
scrollbar-face-color : #33CCFF;
scrollbar-highlight-color : #99FFCC;
scrollbar-3dlight-color : #33CCFF;
scrollbar-shadow-color : #33CCFF;
scrollbar-darkshadow-color : #33CCFF;
scrollbar-track-color : #99FFCC;
scrollbar-arrow-color : #99FFCC;
margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}
td
{ font-family: verdana;
font-size: 10 pt;
color: navy;
padding: 0cm; }
input, textarea
{ background: white
font-family: verdana;
color: navy;
border-style: solid;
border-color: #33CCFF;
border-width: 2; }
A
{ cursor:default;height:1px;behavior:url(link.htc);f ilter:progid:dximagetransform.microsoft.dissolve(d uration=1) }
And I'm pretty sure that Angelfire supports this because I have seen other angelfire sites with the same effects.
MaGiCSuN
11-26-2003, 09:01 PM
you need to add the code that links to the .htc file... it's not in your stylesheet
also background-color: #FFFFFF; is flowing between the codes. Add it to one of the A: tags or wherever you want it or delete it if it's not nessecary :)
Love,
Mirna