Reputation: 1247
i managed to make the sliding panel work but instead of overlay i want it to push the whole site to left this is my fiddle http: //jsfiddle.net/cancerian73/Dw6yK/1/
body { position: relative; min - height: 3000px; margin: 0; padding: 0; top: 0; font - family: 'proximanova-regular', sans - serif; }
Upvotes: 0
Views: 442
Reputation: 15739
To appear from left, make the below changes to your code.
#panel-content {
background: none repeat scroll 0 0 #000000;
float: left;
height: 100%;
position: relative;
width: 100%;
}
Upvotes: 0