How to change width of slider with CSS

When you create a slider on some of the styles it will inset it slightly because of the arrows. In some cases you may want the width of the slider to extend 100%. Add the following to your custom CSS in the template and it should take care of it.

.wprev-slider{     

margin-left: -10px;     

margin-right: -10px;

 }

If you only want to apply this to a small screen device then use this...

@media only screen and (max-width: 600px) {

.wprev-slider{

margin-left: -10px;

margin-right: -10px;

}

}

This article was helpful for 1 person. Is this article helpful for you?