Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jquery menu not working

Tags:

html

jquery

css

HI I have this jquery menu here

http://jsfiddle.net/pJMva/8/

and it doesnt seem to work ..... The button is supposed to expand to right on hover

Thanks all efforts appreciated

like image 593
koool Avatar asked Jul 20 '26 02:07

koool


1 Answers

Add position:relative; to your css:

.anim_queue_example1 a
{

    margin: 15px;
    width: 50%;
    height: 25px;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    background: #333;
    color: #fff;
    position:relative;

}

example: http://jsfiddle.net/niklasvh/pJMva/10/

like image 72
Niklas Avatar answered Jul 21 '26 16:07

Niklas



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!