Tagged: easyslider
Hi!
Hoping you can help me out with two things:
a) I was wondering if it’s possible to remove the “Easy Slider” from mobile view, or if it can be substitute with a simple image (to improve the loading time).
b) Is it possible to center the logo according the screen size? Just in mobile view.
Thank you!
Hi,
Can you post the link to your website please?
Regards,
Josue
Hey!
1. Enable this and set custom classes for both elements (slider & image), then use a code like:
.image{ display: none; }
@media only screen and (min-width: 767px) {
.image{ display: block; }
.slider{ display: none; }
}
2. Try adding this code to the Quick CSS:
.logo, .logo img {
margin: 0 auto !important;
}
Cheers!
Josue
This was fix.
Thank you!
You can close this topic.