Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I have a button that I have cut in three parts, left, repeating middle and right side.

I placed them in divs like this:

<a href="#">
    <div class="button_wrapper">
    <div class="left-corner">1</div>
    <div class="middle-bar">Kontakt</div>
    <div class="right-corner">3/div>
    </div>
</a>

and CSS is something like this:

.button_wrapper { margin-right:25px; display:inline; }  
.button_wrapper:hover .left-corner { background:url(../images/menu_s_l.png) no-repeat; width:11px; height:21px; }
.button_wrapper:hover .middle-bar { background:url(../images/menu_m_bg.png) repeat-x;height:21px; }
.button_wrapper:hover .right-corner { background:url(../images/menu_s_r.png) no-repeat; width:11px; }

What am I doing wrong? :S

(and no I can't use border radius :(, had it and then they told me they need it to work in Ie8)

edit: result I'm getting is something like this:

broken menu

share|improve this question
What exactly isn't working? (aside from using a block element inside of an inline element) – Zeta Jan 24 '12 at 20:44
@Zeta Nothing wrong with using a block level element inside an inline element in HTML5 ... – Xander Jan 24 '12 at 20:45
@Xander: Hm, didn't know that. I'm still used to XHTML... But I guess your answer already solves this question. – Zeta Jan 24 '12 at 20:48

1 Answer

up vote 1 down vote accepted

I'm assuming you do, but just to verify, do you have the button pieces float:left ?

share|improve this answer
Ah yes forgot to float them but, amazingly the right part still doesn't show up. – Phoenix_yay Jan 24 '12 at 21:08
Ah, I'm retarded. Anyway yes, I forgot to float them and I didn't notice the right div not having height set. Thanks. – Phoenix_yay Jan 24 '12 at 21:13
@Phoenix_yay, No problem! – Walkerneo Jan 24 '12 at 21:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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