Emulating CSS Popup Box

WheeriTrikaks

New Member
I am trying to emulate the popup box on this site when you mouseover "work" link: http://zooadvertising.com.au/The popup and mouseover elements work great. The only thing I cannot figure out how to do is create multiple columns within the popped up element. When I try to add another div within it to say, float right as a second column, it creates more popups instead. Is there a way to nest divs inside an element styled like this?Here is the Fiddle: http://jsfiddle.net/7ZE8q/1/CSS:\[code\]<style type="text/css" title="">.NameHighlights {position:relative;}.NameHighlights div {display: none;}.NameHighlightsHover {position:relative;}.NameHighlightsHover div {display:block;position:absolute;width: 400px;height: 300px;top:30px;left:-300px;z-index:1000;background-color: #000000;padding: 15px;font-size: 14px;color: white;}</style>\[/code\]
 
Back
Top