Brooklyn Theme Hover Effect, Product Image Next Button and Image Display on Mobile is messed up

Hi all,

1: Is there anyone here that could help with adding hovering effect for product images?

2: I can’t seem to find how to add a next button to show the next picture on the product image as well.

Eg.

3: My product image on mobile is messed up too.

@Venivoirsg

Please share your store URL!

Thanks!

Hi @dmwwebartisan

Thanks for responding!

Store url: https://venivoirsg.myshopify.com/

@Venivoirsg

Please share your store password becouse your store is password Protected.

Thanks!

Hi @dmwwebartisan

password: holtam

@Venivoirsg

Please check following screenshot slider button allready display

@Venivoirsg

add following css your theme.scss.liquid or timber.scss.liquid bottom of the file.

@media (max-width: 767px){
div#CollectionSection .medium--one-half {
    width: 48% !important;
}

#CollectionSection .grid-uniform {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 0px !important;
}
}

Thanks!

Hi @dmwwebartisan

Thanks!

I have added the code, but the mobile view product image still does not change.

Hi @dmwwebartisan

Thanks! are we able to have the next button on desktop view as well?

@Venivoirsg

Please remove previous css and add this new css code

@media (max-width: 767px){
div#CollectionSection .medium--one-half {
    width: 45% !important;
}

#CollectionSection .grid-uniform {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 0px !important;
}
div#CollectionSection .grid__item { padding-left: 40px !important;}
}

Hi @dmwwebartisan

Works now! thanks!!