Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicates:
How would I implement stackoverflow’s hovering dialogs?
i want a small box like stackoverflow

did you see the box in the top is each page i want do one how

share|improve this question
1  
Could you please clarify your question? – Harmen Feb 24 '10 at 19:50
what is your question? – Tim Feb 24 '10 at 19:50
@Tim: well the question is "did you see the box in the top is[sic] each page".. the correct answer would probably be "yes, I have" – Jimmy Feb 24 '10 at 19:51

marked as duplicate by Jimmy, Matt Ball, jmfsg, Roger Pate, George Stocker Feb 25 '10 at 3:46

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

They are doing 2 things:

1) They have a background image which is why the little magnifying glass appears:

#hsearch .textbox {
    background:url("http://sstatic.net/so/Img/search.png") no-repeat scroll left center #FFFFFF;
    border-color:#CCCCCC -moz-use-text-color -moz-use-text-color #CCCCCC;
    border-right:medium none;
    border-style:solid none none solid;
    border-width:1px medium medium 1px;
    margin:0;
    max-width:230px;
    padding-left:16px;
}

2) When you click on the box, if the content says "search", then it's blanked out. This is done by simple javascript:

<input name="q" class="textbox" tabindex="1" 
    onfocus="if (this.value=='search') this.value = ''" 
    type="text" maxlength="80" size="28" value="search"> 
share|improve this answer
i dont mean that i mean the box that the new meaages appear in it – Unix Man Feb 24 '10 at 19:55
@oustafa - Sorry, it wasn't clear. I thought you were referring to the search box. – Keltex Feb 24 '10 at 19:57
1  
Wait...you don't mean the search box but you accepted the answer? – Blair McMillan Feb 24 '10 at 20:07

You mean like on the front page of this site ?

(It'd be a lot more helpful if you were specific.)

In my case I used the activebar plugin

share|improve this answer

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