I think I figured out the problem.
Without SFG, the previous widget, ‘<‘, in the image carousel has the class .elementor-swiper-button and CSS
.elementor-swiper-button {
position: absolute;
display: inline-flex;
z-index: 1;
cursor: pointer;
font-size: 25px;
color: hsla(0, 0%, 93.3%, .9);
top: 50%;
transform:translateY(-50%)
}
With SFG, the class is not found, and no CSS is applied except the default
display: block;
This happens because both Elementor and SFG load a CSS file named “swiper.min.css”. Your CSS file replaces Elementor’s, so the desired class is not defined.
If you renamed your CSS file, I think the problem would go away.
-
This reply was modified 1 year, 9 months ago by
tslarkin.