danabrunetti 0 Report post Posted February 5, 2011 Looking for a way in CSS (base.css) to make a pop out from one div display over another, without blocking the links in the lower div when the pop-out is closed. I am trying to use the Facebook Like Button with the comment pop-out on the pages of my site (triggla.tv) and have made the .widget-pad area of my section appropriately sized to display it when it pops up, so that it goes over another section and div that is containing a large image that links to another page. However, when the Like button is unclicked and the pop-up is not displayed the linked area (silver part in this pick) is not-clickable. The area below where the transparant div from the Like Button is still clickable. How to make it so I can still click the links below where a popout happens on my page? Share this post Link to post Share on other sites
catrina 103 Report post Posted February 6, 2011 The silver/metal-looking part isn't clickable at all (even before I click on the "Like" button). Perhaps you need to make the widget-pad area smaller in height. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
danabrunetti 0 Report post Posted February 6, 2011 @Catrina The silver/metal-looking part isn't clickable at all (even before I click on the "Like" button). Perhaps you need to make the widget-pad area smaller in height. I have done that, and you are correct that this makes the silver area a link again. Unfortunately the side effect is that the "Comment" pop out box then becomes cut off. You can see this in the screen below. So that's where we've really gotten stuck here. Share this post Link to post Share on other sites
kastelic 6 Report post Posted February 6, 2011 You could add this rule: .widget{overflow: visible} But that might affect other elements with the class 'widget' in a bad way so if you have problems you could try: #text-13{overflow:visible} Share this post Link to post Share on other sites
danabrunetti 0 Report post Posted February 7, 2011 @Jimmy This did the trick, thanks! I create new widgit-ized sections for everything, so I found that this did the trick and prevented any conflicts from interacting with other widgets (in base.css). ("share" is the section I created) `#share .widget{overflow: visible}` Share this post Link to post Share on other sites