I am using the following URL script to change the colour/boldness/size etc of any links on my webpages:
<style>
<!--
A.1:link {text-decoration: underline; color:#990000;font-size: 10pt; font-style: none; font-family: arial;font-weight:}
A.1:visited {text-decoration: underline; color:#990000;font-size: 10pt; font-style: none; font-family: arial;font-weight:}
A.1:active {text-decoration: underline; color:#990000;font-size: 10pt; font-style: none; font-family: arial;font-weight:}
A.1:hover {text-decoration: none; color:#333366;font-size: 10pt; font-style: none; font-family: arial;font-weight:}
A.2:link {text-decoration: none; color:#333366;font-size: 8pt; font-style: none; font-family: arial;font-weight:bold}
A.2:visited {text-decoration: none; color:#333366;font-size: 8pt; font-style: none; font-family: arial;font-weight:bold}
A.2:active {text-decoration: none; color:#333366;font-size: 8pt; font-style: none; font-family: arial;font-weight:bold}
A.2:hover {text-decoration: underline; color:#990000;font-size: 8pt; font-style: none; font-family: arial;font-weight:bold}
A.3:link {text-decoration: underline; color:#CCCCCC;font-size: 9pt; font-style: none; font-family:arial;font-weight:bold}
A.3:visited {text-decoration: underline; color:#CCCCCC;font-size: 9pt; font-style: none; font-family:arial;font-weight:bold}
A.3:active {text-decoration: underline; color:#CCCCCC;font-size: 9pt; font-style: none; font-family:arial;font-weight:bold}
A.3:hover {text-decoration: none; color:#EFEFEF;font-size: 9pt; font-style: none; font-family:arial;font-weight:bold}
-->
</style>
These work fine in IE (of course) but not Mozilla or Mozilla Firefox. Is it my script that is at fault or Mozilla?
These style scripts are within the actual html page being displayed, they are not called from a ccs page.
Many thanks for any info.class and/or id must not begin with a number, start with a letter.Thanks very much for that, all are working fine now.
<style>
<!--
A.1:link {text-decoration: underline; color:#990000;font-size: 10pt; font-style: none; font-family: arial;font-weight:}
A.1:visited {text-decoration: underline; color:#990000;font-size: 10pt; font-style: none; font-family: arial;font-weight:}
A.1:active {text-decoration: underline; color:#990000;font-size: 10pt; font-style: none; font-family: arial;font-weight:}
A.1:hover {text-decoration: none; color:#333366;font-size: 10pt; font-style: none; font-family: arial;font-weight:}
A.2:link {text-decoration: none; color:#333366;font-size: 8pt; font-style: none; font-family: arial;font-weight:bold}
A.2:visited {text-decoration: none; color:#333366;font-size: 8pt; font-style: none; font-family: arial;font-weight:bold}
A.2:active {text-decoration: none; color:#333366;font-size: 8pt; font-style: none; font-family: arial;font-weight:bold}
A.2:hover {text-decoration: underline; color:#990000;font-size: 8pt; font-style: none; font-family: arial;font-weight:bold}
A.3:link {text-decoration: underline; color:#CCCCCC;font-size: 9pt; font-style: none; font-family:arial;font-weight:bold}
A.3:visited {text-decoration: underline; color:#CCCCCC;font-size: 9pt; font-style: none; font-family:arial;font-weight:bold}
A.3:active {text-decoration: underline; color:#CCCCCC;font-size: 9pt; font-style: none; font-family:arial;font-weight:bold}
A.3:hover {text-decoration: none; color:#EFEFEF;font-size: 9pt; font-style: none; font-family:arial;font-weight:bold}
-->
</style>
These work fine in IE (of course) but not Mozilla or Mozilla Firefox. Is it my script that is at fault or Mozilla?
These style scripts are within the actual html page being displayed, they are not called from a ccs page.
Many thanks for any info.class and/or id must not begin with a number, start with a letter.Thanks very much for that, all are working fine now.