2

I'm using the 960 grid with 12 columns and Nivo slider.

I'm using the 'grid_12' as my DIV but I'd like to find a way to make the slider consume the entire 960 grid (instead of 940) thus eliminating the 10px border that is on each side of the slider.

muskratt
  • 430
  • 1
  • 4
  • 8

2 Answers2

1

Make your div container element like so:

<div class="grid_12 alpha omega">
// slider
</div>

alpha / omega are used to eliminate padding (10px from left/right respectively)

Jakub
  • 20,418
  • 8
  • 65
  • 92
  • I had initially thought that but for some reason when I tried it earlier, using both alpha and omega didn't effect it. – muskratt Dec 12 '11 at 06:36
0

Is there padding on your container div or a margin on the slider div?

arnonate
  • 495
  • 4
  • 11