Hi,
I would like to place a custom widget area over the layerslider. I’ve added a twitterfeed as a widget in a custom made widget. Added the following css. Only thing is that the z-index doesn’t work. When I add a extra z-index to the slider, offcourse it’s lower, then the top of the widget, which is laying under the slider, won’t even be visible when the page loads. As it is now, it is visible loading.
My css-code:
#juiz_last_tweet_widget-2.juiz_last_tweet_widget {
position:absolute;
background:blue!important;
top:-180px;
right:150px;
width:300px;
z-index:9999!important;
}
Does anyone know how I can get this layered the right way? You can see what I mean at http://bit.ly/1fOwQhg
Regards,
Erwin
Hey erwin_m!
Please add this on Quick CSS or custom.css:
#after_layer_slider_1 {
position: relative;
z-index: 9999;
}
Cheers!
Ismael
Hey Ismael,
That did it! Thank you.
Regards,
Erwin