Lightbox-CSS kills theme features
-
Hi,
WP Lightbox 2 uses some CSS that kills often used styles of themes:
https://screencloud.net/v/xdYf
.clearfix::after { clear: both; content: "."; display: block; height: 0; visibility: hidden; }
That’s a problem, when themes (like Themeforest’s SIMPLEMAG, that I’m using) uses this CSS for the comments in the sidebar with this dotted line: https://screencloud.net/v/iW2k
.widget_ti_most_commented li::after { border-bottom: 1px dashed #999 !important; content: ""; display: block; left: 0; margin-top: 5px; position: absolute; top: 50%; width: 90%; z-index: 1; }
So when you activate WP Lightbox 2, then the dotted line of the theme’s CSS is killed.
The problem is the “visibility: hidden” of WP Lightbox 2’s CSS.
Isn’t it possible, to avoid in WP Lightbox 2’s CSS this or restate it in another way, so that it doesn’t conflict with themes, using this “clearfix:after”, too?
.clearfix::after { clear: both; content: "."; display: block; height: 0; visibility: hidden; }
Any idea please?
Thanks.
- The topic ‘Lightbox-CSS kills theme features’ is closed to new replies.