Reputation: 11
Hello I'm trying to make a slider using responsive slider form, I want the navigation Buttons to sit on the Image and not below the Image. Is there any trick or way to do it. Please help me. thanks
Second slide Transparent buttons over the left and right side Link
Upvotes: 0
Views: 69
Reputation: 4561
Add this to the bottom of your CSS file:
ul.centered-btns_tabs.centered-btns1_tabs {
position: absolute;
bottom: 0;
z-index: 999;
left: 50%;
margin-left: -21px;
}
Upvotes: 1