0

so i just finished putting in my image slider. I looked at a few popular websites for examples of how they where able to position theirs. I really liked ebay's. Unfortunately my image slider is positioned in the center of the screen, and adjust as the page gets smaller. I would like to make my image slider the exact same as ebay's in terms of the way that the image slider is positioned slightly to the left, and as you make the page smaller it stays the same in height and width. Then when it hits the left side of the web browser it stops and becomes static. I will add a link to my website so far and i would like to know if you could give me some direction on how to do this.

My site: http://rootforsite.azurewebsites.net/
Ebay: http://www.ebay.com/

Siguza
  • 21,155
  • 6
  • 52
  • 89
Alex
  • 61
  • 10
  • you could make "bx-viewport" have a static width. that prevents the resizing of the slider. – Marvin Smit Sep 02 '14 at 22:44
  • How exactly do i do this with my code? Is their any way you could give me an example? Sorry i am new to all this. – Alex Sep 02 '14 at 22:46

1 Answers1

0

Disable the Bootstrap responsiveness by following these steps and the slider will not become smaller.

Or you can just replace this <div class="container"> for this <div class="" style="width: 1130px; margin: 0px auto;"> on your page.

Community
  • 1
  • 1
Oriol
  • 11,660
  • 5
  • 35
  • 37
  • One quick thing though. How do i move the whole slider frame over a bit to the left with the same positioning effect it has right now? – Alex Sep 02 '14 at 23:04