hi, I am not sure if anyone can help... I am looking for Alert Bar CSS or a guide on how to create one using CSS. Thanks!
This amazing popup is not a bar but it could be made into one. CSSPlay Alert Box Or if you want a basic colored bar with text in it, try this: .alertbox { background-color: #f00; border: 1px solid #000; color: #fff; height: 25px; text-align: center; width: 400px; } <div class="alertbox">Testing</div>
Why not just write it in HTML? <div id="alertbar"><p>All the junk and content you want in here <a href="#">NOW WITH LINKS!!!</a></p></div> or whatever. #alertbar { position: fixed; z-index: 100; (just in case) other styles here } IE6 would need something funky to work. Not sure why a plugin is needed unless it's going to do some of the other stuff alert bars do (like going away after clicking a close button). Then you're introducing some scripts and it's no longer CSS-only.