Hi,
I don’t see the arrows there at all. Did you remove them from the slideshow?
Thread Starter
rytch
(@rytch)
Thanks for your quick reply. I apologize, I took them off without thinking as I wanted to wait for a solution — should not have done that until you were able to see the issue. I have put the arrows back on so you can see. Thank you!
Hi @rytch
The slideshow is inheriting styles from your theme. You just need to add some CSS to your site that looks like this:
.metaslider .flexslider ul.slides {
padding-left: 0!important;
}
Thread Starter
rytch
(@rytch)
Thank you so much for the great support! That worked well!
Hi @rytch
No problem, glad it’s working! I’ll mark this as resolved.
By the way, if you’re enjoying MetaSlider please leave us a 5-star review. They really help us out and let others find our plugin more easily. If you don’t think we deserve the 5 stars please let us know how we can improve, too. Thanks!
https://wordpress.org/support/plugin/ml-slider/reviews/?rate=5#new-post
Thread Starter
rytch
(@rytch)
Oops one more question: can I change the css to padding-top and use it in the same way? Thanks!
Hi @rytch
Yes you can add any sort of CSS styles you need. You might have to use a different CSS selector though depending on what you are trying to do.
Thread Starter
rytch
(@rytch)
I’m just trying to reduce the spacing above the slide image. Thanks.
HI @rytch
I can’t tell what’s doing it but it looks like there is some code unrelated to MetaSlider that is adding a top margin to your images. I’m not sure if this will work, but try:
.metaslider .flexslider .slides img {
margin-top: 0 !important;
}
Thread Starter
rytch
(@rytch)
Thank you that worked well!