Hi, we are having 2 issues with our website, both on the mobile side.
1) Our “fullscreen slider” on home page does not adjust to mobile device. It seems to work fine on the Mac.
2) Why shopping cart appears on mobile device? We do not have any e-commerce turned on.
Here is the site link (currently set up in a staging area): http://worldpix.staging.wpengine.com
We are trying to go live ASAP. Anything you can do to help would be great.
thanks, -jeff
Hi jdannay!
Thank you for using Enfold.
1.) Please edit the images in the slider then set the “Image Position” to “Center center”. This is usually the best option for most images. Note the images in the slider is set as background and their background-size property is set to “cover” which means that it will force the image to cover the slider container. However, parts of the images might overflow outside the container in order to keep its aspect ratio.
2.) Did you install the Woocommerce plugin? It will display automatically if you installed the plugin. You can easily hide it with this css code:
@media only screen and (max-width: 767px) {
.responsive #top .cart_dropdown {
display: none;
}
}
Regards,
Ismael
Both suggestions worked great. Thanks!