I have a DIV element which is hidden by default. But on hover, I want it to be visible.
This is my current CSS:
.main-menu .left-footer{
    display: none;
}
.main-menu:hover + .left-footer {
   display: block !important;
}
And HTML:
<div class="left-footer">
                <small>
                <a href="/support">Support</a> <a href="/terms">Terms of Service</a> <a href="/privacy">Privacy</a> <br />
                © 2015 LittleBux. All Rights Reserved
                </small>
              </div>
What am I doing wrong here?
I am taking example from this topic
 
     
     
    