I need help centering the 2 buttons on the fullscreen slider on the iPhone in portrait mode. If you look at the screen shot you will notice that the red button is a little bit to the left and not quite centered with the transparent button beneath it which is centered. I checked your demo and the same thing happens. Can you give me some Quick CSS to adjust the red button to center it on the iPhone in portrait mode please? Thank you very much!
Hi djshortkut!
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
@media only screen and (max-width: 480px) {
.avia-multi-slideshow-button.avia-slideshow-button{ margin-right:0px; }
.avia-multi-slideshow-button.avia-slideshow-button-2{margin-left:0px;}
}
Regards,
Devin
That did it, thank you very much!