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.

On the page biztone.co, in the left sidebar, I am trying to display social share links in a div(.item .details .post-meta), when the main div(#sidebar .recent-post-thumb li) is hovered. I've kind of got it working, except the div(.item .details .post-meta) appears in the box below the hovered box.

Here's the css script I have added to get it to work. But, I need help figuring out why it's displaying in the box below and not the box being hovered..?

.item .details .post-meta { display:none; }
sidebar .recent-post-thumb li:first-child:hover + .item .details .post-meta {
display:block; }
sidebar .recent-post-thumb li:hover + .item .details .post-meta {
display:block; }

Any help is greatly appreciated and will teach me something new.

share|improve this question
Are you insisting on CSS only or are you ok with a javascript solution? – Benjamin Gruenbaum Feb 1 at 0:04
I would prefer not to have to load Javascript. – Michael Feb 1 at 0:05
1  
Show your (relevant/sscce) HTML here, please, don't make us trawl through the whole codebase of your website to find the problem. Also, having the HTML here helps the question retain its value once your problem's solved and the code's corrected (assuming it can be). – David Thomas Feb 1 at 0:08
And/or consider putting the relevant code in a JSFiddle so we can fork and experiment... – Jeromy French Feb 1 at 0:11
JSfiddle -- jsfiddle.net/kg9wU Thank you all. – Michael Feb 1 at 0:25
show 1 more comment

2 Answers

up vote 2 down vote accepted

#sidebar .popular-post-thumb li:hover .post-meta is what you need for a selector instead of going to the next dom element with the +

Change sidebar .recent-post-thumb li:hover + .item .details .post-meta to
#sidebar .popular-post-thumb li:hover .post-meta

share|improve this answer
Yes! Thank you tons, Wololo! I was unaware that + sends to next dom. – Michael Feb 1 at 0:28

It's because of the + sign: it targets the next element.

Remove it and it will target the .post-meta element inside the currently hovered li.

share|improve this answer
Awesome. Thanks, bbxdesign. Good to learn new things. – Michael Feb 1 at 0:29

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.