Slide overlay and nav arrow issues
-
Using Chromium browsers on Windows 11.
Slide overlay issue:
When I ‘preview’ my slides they look perfect. When I added the shortcode and I view the site there is a solid color (white) overlay covering 95% of the slide – with about 10 or 20 pixels of the actula slide showing on the right side and the top.
I played around with the CSS and the only workaround I could find, that would hide the overlay and also allow the URL links on the slides to function was:
.flex-control-nav:not(.flex-control-thumbs) {
top: auto;
}It seems like a strange solution. Is there any alternative CSS solution for this?
Nav arrows:
With or without that CSS code, both of my nav arrows display of the far left side, right next to each other. I couldn’t identify a CSS workaround for this. How do I get the nav arrows to display on my site as they do on the ‘preview’ (far left and far right)?
Thanks in advance!
The page I need help with: [log in to see the link]
-
Hi @dormaj
your theme is loading CSS that is overriding the arrows position:
In particular this code:
.flex-direction-nav a.flex-next {
left: 50px;
}Add this custom CSS through your WordPress theme so is available globally to fix the override issue:
.metaslider .flex-direction-nav .flex-next {
left: unset;
}Regards
Thank you! You are awesome. That is the perfect fix.
I wondered if something in Theme X (integrity, Cornerstone, etc…) might be the cause.
I love your product!
And you quick support response if top shelf!
I’m glad it worked!
The CSS file I mentioned is probably bundled by the X Theme.
Thanks for using MetaSlider, @dormaj
If you have a moment, please leave a 5-star review to help keep the plugin going:
https://wordpress.org/support/plugin/ml-slider/reviews/
You must be logged in to reply to this topic.