css - absolutely positioned div is below another div -


when click image table, popup appears. when click on 1 of images in last row, cut off div below it.

i can't post relevant css there can post page.

link

click on last image below "wallpaper - click thumbnail view details" (before printed fabrics section starts).

actually, same thing happens if click on last image under "printed fabrics" well.

how can make appear on top ?

it's overflow: hidden on container causing problem. can change (global.css 1423):

.wallpaper_collection {   overflow: hidden; } 

to this:

.wallpaper_collection:after {   content: "";   display: table;   clear: both; } 

you have same other container(s). e.g. (line 1428)

.printed_fabrics_collection {   overflow: hidden; } 

you combine them 1 rule, so:

.wallpaper_collection:after, .printed_fabrics_collection:after {   content: "";   display: table;   clear: both; } 

Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

asp.net - Razor Page Hosted on IIS 6 Fails Every Morning -

c++ - wxwidget compiling on windows command prompt -