This topic has 6 replies, 2 voices, and was last updated 7 years, 9 months ago ago by Olga Barlow
On my product pages, the owl control buttons on the product image are not ok in IE11. They are showing although you don’t move the mouse on the image, and the next button has the symbol not aligned in the box
Everything is ok on firefox
My site is not public yet so I will give you the information to connect in the private content
Hello,
Go to Theme Options > Styling > Custom CSS and add the following code
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.main-images .owl-controls .owl-next::before, .thumbnails-list .owl-controls .owl-next::before{
margin-left: 17px;
}
}
We’ll also fix it in next theme update.
Regards
Thank you! That fixes the alignement problem however there is still a differenece in IE: the buttons are always visble. In fierefox they appear only when you “hover” the image (much nicer!)
Hello,
Ok, then replace previous code by this one
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.main-images .owl-controls .owl-next::before, .thumbnails-list .owl-controls .owl-next::before{
margin-left: 17px;
}
.main-images .owl-controls .owl-next,
.main-images .owl-controls .owl-prev{
opacity: 0;
}
.main-images:hover .owl-controls .owl-next,
.main-images:hover .owl-controls .owl-prev{
opacity: 1;
}
}
Regards
Great, it works perfectly.
Thanks for your fast help.
You are welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up