i'm trying to show a hidden div while hovering over the logo of the page.
the website is: http://www.enbloc-magazin.de/
as i said i want to show a container (#snowflakesContainer, display: none;) while hovering ov the logo.
i used several scripts like:
$('#logo').hover(function() {
$('#snowflakesContainer').toggle();
});
but nothing worked.
the css of the hidden container is:
#snowflakesContainer {
top: -553px;
position: absolute;
width: 100%;
height: 100%;
display: none;
}
thanks for any help!