Hello,
Does anyone know why when viewing my webpage that has a CSS installed on it thru DreamWeaver, it looks fine when using InternetExplorer to view it but when you open the page in Netscape or others, the links on the page all blink like a sign at a go-go bar??
www . song lyrics by mars . com <no spaces.
Any help is much appreciated.In your CSS file here:
<!-- m --><a class="postlink" href="http://www.songlyricsbymars.com/1-CSS/LeftFrameCSS.css">http://www.songlyricsbymars.com/1-CSS/LeftFrameCSS.css</a><!-- m -->
you'll find the source of your blinking woes. Notice the "text-decoration" property is set to "underline blink".
a:link {
font-family: Arial, Helvetica, sans-serif;
color: #FF3300;
text-decoration: underline blink;
font-weight: normal;
}
Internet Explorer doesn't support "blinking" which is why it appears to blink in other browsers. You may need to either edit this file directly and remove the CSS text-decoration property's "blink" value, or locate this property in Dreamweaver's "CSS Styles" definition panel and uncheck the "blink" checkbox.
~Adamal
Does anyone know why when viewing my webpage that has a CSS installed on it thru DreamWeaver, it looks fine when using InternetExplorer to view it but when you open the page in Netscape or others, the links on the page all blink like a sign at a go-go bar??
www . song lyrics by mars . com <no spaces.
Any help is much appreciated.In your CSS file here:
<!-- m --><a class="postlink" href="http://www.songlyricsbymars.com/1-CSS/LeftFrameCSS.css">http://www.songlyricsbymars.com/1-CSS/LeftFrameCSS.css</a><!-- m -->
you'll find the source of your blinking woes. Notice the "text-decoration" property is set to "underline blink".
a:link {
font-family: Arial, Helvetica, sans-serif;
color: #FF3300;
text-decoration: underline blink;
font-weight: normal;
}
Internet Explorer doesn't support "blinking" which is why it appears to blink in other browsers. You may need to either edit this file directly and remove the CSS text-decoration property's "blink" value, or locate this property in Dreamweaver's "CSS Styles" definition panel and uncheck the "blink" checkbox.
~Adamal