vote up 1 vote down star
3

Possible Duplicates:
Notify panel similar to stackoverflow’s
How to show popup message like in stackoverflow

How does Stackoverflow do the "You earned a new badge" window? (the orange one that pops up at the top of the screen, I believe its the one that shows you the FAQ when your not logged in).

Anyone have a code sample to do this? (with the button to close the window also?)

flag

Why don't you take a look at their source code? ;) – musicfreak Jun 20 at 6:07
Because you won't see it in the source code and will have to follow some links to external scripts/CSS files. – schnaader Jun 20 at 6:12
the server side code is far more interesting in this case :) – dfa Jun 20 at 6:19
look at some CSS libraries like Dojo etc which have these effects. – Grouchal Jun 20 at 6:38

closed as exact duplicate by Sean Bright, Triptych, musicfreak, schnaader, blowdart Jun 20 at 7:01

2 Answers

vote up 4 vote down

This is a very simple excersise in HTML, CSS, and DOM manipulation. Take a look at http://jquery.com to add effects, etc...

Using these styles in your css:

#banner
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #aaf;
    color: #000;
    font-size: 1.5em;
    padding: .5em;
    z-index: 100;
}

And this HTML on yourpage:

<div id="banner">
    Your text here
    <a href="#" onclick="document.getElementById('banner').style.display = 'none'; return false;">close</a>
</div>

Should do the trick. Play with the styles, etc... to make it look nice.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.