Thank you for this!
I edited the code a bit to match my forums though. And I made it so the message only shows up when a user is using Internet Explorer. Check out the attached screenshot.
If anyone wants the code, here it is:
Note: I also attached the image I am using in my code. Put "attention.png" in *vbroot*/images . You may use it any way you like.
header:
Code:
<head>
<script type="text/javascript">
if (navigator.appName == "Microsoft Internet Explorer"){
document.writeln("<div id=\"alra7ba1\"><center><img src=\"/images/attention.png\" style=\"vertical-align: middle;\" alt=\"\" /> <font color=\"#FF0000\"><b>Attention</b>: This site does not support <del>Internet Explorer</del>,TTG runs best with <a href=\"http://www.mozilla.com/en-US/firefox/\">FireFox</a></font></center></div>");
}
</script>
</head>
Change the
RED text to your liking.
additional.css:
Code:
#alra7ba1 {
color : #FFFFFF;
width : 550px;
background-color: rgba(0, 0, 0, 0.5) ; /* Added Opacity to the background */
border: 2px solid rgba(69, 63, 63, 0.5); /* Added Opacity to the border to match background */
border-radius: 4px; /* Added a radius to the border for rounded corners */
position:fixed;
right:410px; /* You may need to adjust this to get it centered */
top:0px;
z-index: 1;
}
#alra7ba1 a:hover {
color: #FFFFFF; /* Added a hover color to the FireFox Link - It was Black */
}
Thank you Dr.osamA!