fauntleroy
Technical User
Hello there,
I tried adding my css link styles directly to a template page of a site, but I found that the Spry menu inherited the link style of the pages in IE6 (and only IE6). I then removed the link styles from the page and placed it on the external css style sheet, but it kept happening. I believe I need to give the specific font the link attributes, but I'm uncertain how to assemble the code correctly.
I'm trying to figure it out from web tutorials but I'm struggling. Is it possible someone could tell me how to make the snippets I have below come together to achieve this?
Thanks very much.
I WOULD LIKE TO APPLY THESE ATTRIBUTES ...
a:link {
color: #330066;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #330066;
}
a:hover {
text-decoration: none;
color: #336699;
}
a:active {
text-decoration: none;
color: #330066;
}
TO THIS FONT ...
.BottomMenuText {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #999999;
}
ON THIS STYLE SHEET ...
@charset "ISO-8859-1";
.bodytext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #333333;
list-style-image: url(images/curser1.gif);
line-height: 19px;
margin-left: 10px;
margin-right: 10px;
}
.bluelinktext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #330099;
}
.image_right {
clear: right;
margin-top: 10px;
margin-right: 0px;
margin-bottom: 10px;
margin-left: 10px;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 2px;
padding-left: 2px;
}
.blueheadtext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: 400;
color: #333399;
font-style: italic;
}
.bodyRed {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #CB190D;
}
.bodytextblue {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #312563;
}
.BottomMenuText {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #999999;
}
#Table_01 {
background-image: url(images/parchment1.jpg);
height: 750px;
width: 757px;
position: center;
}
.RedHeaderText {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
color: #FF6600;
margin-left: 12px;
margin-top: 222px;
font-weight: 400;
}
.greenheads {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
color: #43AE42;
text-transform: uppercase;
padding-bottom: 8px;
padding-left: 12px;
}
.CreditTextSmall {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #FBE9D1;
}
.image_right {
margin-top: 99px;
margin-bottom: 10px;
margin-left: 10px;
float: right;
clear: right;
padding: 77px;
}
I tried adding my css link styles directly to a template page of a site, but I found that the Spry menu inherited the link style of the pages in IE6 (and only IE6). I then removed the link styles from the page and placed it on the external css style sheet, but it kept happening. I believe I need to give the specific font the link attributes, but I'm uncertain how to assemble the code correctly.
I'm trying to figure it out from web tutorials but I'm struggling. Is it possible someone could tell me how to make the snippets I have below come together to achieve this?
Thanks very much.
I WOULD LIKE TO APPLY THESE ATTRIBUTES ...
a:link {
color: #330066;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #330066;
}
a:hover {
text-decoration: none;
color: #336699;
}
a:active {
text-decoration: none;
color: #330066;
}
TO THIS FONT ...
.BottomMenuText {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #999999;
}
ON THIS STYLE SHEET ...
@charset "ISO-8859-1";
.bodytext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #333333;
list-style-image: url(images/curser1.gif);
line-height: 19px;
margin-left: 10px;
margin-right: 10px;
}
.bluelinktext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #330099;
}
.image_right {
clear: right;
margin-top: 10px;
margin-right: 0px;
margin-bottom: 10px;
margin-left: 10px;
padding-top: 2px;
padding-right: 2px;
padding-bottom: 2px;
padding-left: 2px;
}
.blueheadtext {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: 400;
color: #333399;
font-style: italic;
}
.bodyRed {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #CB190D;
}
.bodytextblue {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #312563;
}
.BottomMenuText {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #999999;
}
#Table_01 {
background-image: url(images/parchment1.jpg);
height: 750px;
width: 757px;
position: center;
}
.RedHeaderText {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
color: #FF6600;
margin-left: 12px;
margin-top: 222px;
font-weight: 400;
}
.greenheads {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
color: #43AE42;
text-transform: uppercase;
padding-bottom: 8px;
padding-left: 12px;
}
.CreditTextSmall {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #FBE9D1;
}
.image_right {
margin-top: 99px;
margin-bottom: 10px;
margin-left: 10px;
float: right;
clear: right;
padding: 77px;
}