Ayaan Kahn
Ayaan Kahn

Reputation: 11

How to make the navigation buttons to float on the Image in a slider

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

Answers (1)

Charles Ingalls
Charles Ingalls

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

Related Questions