Remove main collection image from mobile only....possible?? HELP !!!!

Solved
ApexMikey
Excursionist
49 0 5

Hello

I have a slightly different problem, I hope you can help.

 

I want my main collection image to show on the top of collection page, but NOT on mobile. It looks much nicer on desktop BUT it makes the page too long on mobile.

Is there a way to fix this?

thank you

Accepted Solution (1)
makkaomakka
Shopify Partner
875 172 183

This is an accepted solution.

Please add css provided by me on the theme.liquid file

mangitma_0-1695529919049.png

 

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Mangit

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

View solution in original post

Replies 22 (22)
makkaomakka
Shopify Partner
875 172 183

Hi @ApexMikey ,

 

As you haven't mentioned which theme you are using, it's difficult to give an exact solution. Could you please provide more information about the site?

 

Also, providing the link to your site would be helpful so that I can provide an appropriate solution.

 

Thank you.

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

ApexMikey
Excursionist
49 0 5

Awesome, thank you.

I can modify/paste code, cannot do much else  🙂

https://www.apexanimalz.com

 

The theme is dawn.

Much appreciated,

M.

makkaomakka
Shopify Partner
875 172 183

Hi @ApexMikey ,

 

Please you can hide the main collection image by adding below codes on the theme.liquid file.

 

IMPORTANT: Before making any changes on the theme files, please make sure to have a backup for the file.

 

 

<style>

@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px;
  }
}

</style>

 

 

Steps to add CSS:

Step 1: Go to Online Store > Themes > Active theme > Edit

mangitma_0-1695525215743.png

 

Step 2: Search for "theme.liquid"

mangitma_1-1695525215436.png

 

Step 3: Add the CSS above "</head>"

mangitma_3-1695525384395.png

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Mangit

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

ApexMikey
Excursionist
49 0 5

Awesome it worked, iyt just has way too much space between the collection description text and the items below, any fix for that?

thanks !!!!

makkaomakka
Shopify Partner
875 172 183

Replace the above code with below codes.

<style>

@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px;
  }
}

</style>

 

If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Mangit

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183

Hi @ApexMikey ,

 

Replace the above code with the below updated code.

<style>

@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px;
  }
}

</style>

 

If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Mangit

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183

Hi @ApexMikey ,

To update the spaging for mobile device, please add below codes on the theme.liquid file. Replace this code with previous codes.

 

<style>

@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px;
  }
}
</style>

 

Thank you

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183

Hi @ApexMikey ,

I dont know why but i cannot reply to this thread. My reply gets deleted. FYI, I have updated the previous reply with updated code. Please follow accordingly.

 

 

@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none!important;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px!important;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px!important;
  }
}

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

ApexMikey
Excursionist
49 0 5

That is very odd....I have no idea why. I am also new here...
I appreciate you !

makkaomakka
Shopify Partner
875 172 183

Now my previous reply got deleted.

Please find updated code below:

 

<style>

@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px;
  }
}

</style>

 

 If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Mangit

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

ApexMikey
Excursionist
49 0 5

You are welcome to reply directly also

info@apexanimalz.com

makkaomakka
Shopify Partner
875 172 183
<style>
@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px;
  }
}
</style>

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183
@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none!important;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px!important;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px!important;
  }
}

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183

Add this codes to the theme file.

<style>
@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none!important;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px!important;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px!important;
  }
}
</style>

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183

Please add below code to the theme.liquid file.

<style>
@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none!important;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px!important;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px!important;
  }
}
</style>

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183
@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none!important;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px!important;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px!important;
  }
}

mangitma_0-1695529204555.png

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183

Hi @ApexMikey ,

 

Please add bellow CSS to the theme.liquid file.

 

 

 

<style>
@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none!important;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px!important;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px!important;
  }
}
</style>

 

 

Steps to add CSS:

Step 1: Go to Online Store > Themes > Active theme > Edit

mangitma_0-1695529514179.png

 

Step 2: Search for "theme.liquid"

mangitma_1-1695529514189.png

 

Step 3: Add the CSS above "</head>"

mangitma_2-1695529514174.png

 

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Mangit

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183
<style>
    @media only screen and (max-width: 600px) {
        .collection-hero .collection-hero__image-container.media.gradient {
            display: none !important;
        }

        .collection-hero--with-image .collection-hero__text-wrapper {
            padding-bottom: 0px !important;
        }

        .section-template--21052531867970__product-grid-padding {
            padding-top: 5px !important;
        }
    }
</style>

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183

This is an accepted solution.

Please add css provided by me on the theme.liquid file

mangitma_0-1695529919049.png

 

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Mangit

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

ApexMikey
Excursionist
49 0 5

TY all great!

makkaomakka
Shopify Partner
875 172 183

Hi @ApexMikey ,

 

To update the spaging for mobile device, please add below codes on the theme.liquid file. Replace this code with previous codes.

 

<style>

@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px;
  }
}
</style>

 

Thank you

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

makkaomakka
Shopify Partner
875 172 183

Try this code once. I have added important to the css.

 

 

<style>
@media only screen and (max-width: 600px) {
  .collection-hero .collection-hero__image-container.media.gradient {
      display: none!important;
  }
  .collection-hero--with-image .collection-hero__text-wrapper {
      padding-bottom: 0px!important;
  }
  .section-template--21052531867970__product-grid-padding{
    padding-top:5px!important;
  }
}
</style>

 

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".