I have one of our projects very strange problem
here on
http://konyak.georates.net/page-2/
we have a so called images-menu made via Kwicks script . The problem is that we made images in .png format and partly transparent,so that when they will slide one over another, the bottle from down will be nicly visible over another via those transparent part. But the script Kwicks somehow takes the pages body background color and fill the images transparent part with that color... How to fix that? could you hint out?
You need to remove the
overflow:hidden
property applied to the<li
> elements that are ancestors of your bottle images:I made this change in my Developer Tools and the bottles overlap each-other seamlessly, without the vertical lines in-between them.
Update
It seems that a script on your webpage re-adds the
overflow : hidden
CSS every-time you mouse-over one of the images. You can stop this by adding!important
to a css rule that statesoverflow : visible
: