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.
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
Post a Comment