Log in

View Full Version : Alert Script, like those in IE6.



AngelSL
04-27-2007, 11:02 AM
I need those Alert Scripts, like those alerts built-in in WXPSP2 IE6.
If you don't get me, http://www.k9-net.org/bar.PNG

Twey
04-27-2007, 12:29 PM
That's easy, doesn't even need a script:
.alert-bar {
position: absolute;
top: 0;
width: 100%;
height: 2em;
background-color: #ffffe1;
color: black;
border-bottom: 2px gray outset;
cursor: default;
}
<p class="alert-bar">
<img src="warning.png">
To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer. Click here for options...
</p>Note that you need to put all the rest of your content in a scrolling <div> if you don't want it to scroll with the page.