Hi Scott, can you post a link so that I can inspect it?
What theme are you using?
Hi Josh,
I had it installed on a local site, so I just set up a slide show on my online site and the issue doesn’t appear anymore. Locally, I’m using a basic Bootstrap based theme running 4.4 with no plugins yet. The online site is a Genesis based theme running 4.1.8.
So it looks like the issue isn’t with the slider.
S
At least you were able to narrow it down a bit!
I installed my local setup online. It was OK with the WP native theme but not OK with my Bootstrap theme.
You can see the issue here when you rollover the right side.
http://scottsawyerdesign.com/photo/slides/
S
The issue is that bootstrap.css has some styles that are also targeting those slideshow nav buttons:
li.next a:hover:before {
content: "\2190";
position: absolute;
display: block;
top: 42%;
left: 0;
background-color: #BFBFBF;
color: #444;
width: 20px;
height: 20px;
padding-left: 5px;
text-decoration: none;
box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
Remove that, or add a rule like this to your theme or custom slideshow stylesheet and that should fix it:
.meteor-slides .meteor-nav a:hover:before {
display: none;
}