How can i change and turn on the dark overlay you see when you visit the site first time (writer template) with the text: Click here to try out other theme styles............
I can't find the module or whatever it is turning this on.
#tip-overlay {
display: none !important;
}
<!-- ADDED BY [email protected] -->
<div id="tip-overlay"></div>
<style type="text/css">
#tip-overlay {
background: url("overlay-img.png") no-repeat scroll 87% 30px rgba(0, 0, 0, 0.75);
cursor: pointer;
height: 100%;
left: 0;
opacity: 1;
position: fixed;
top: 0;
width: 100%;
z-index: 99999;
}
</style>
<script type="text/javascript" src="jquery.cookie.js" charset="utf-8"></script>
<script type="text/javascript">(function($) {$(document).ready(function() {
if(!$.cookie('tipoverlay')) {
$('#tip-overlay').click(function(){
$('#tip-overlay').remove();
$.cookie('tipoverlay',1,{ expires: 7, path: '/' });
});
} else {
$('#tip-overlay').remove();
}
});})(jQuery)</script>
<!-- END -->