Re: Change Kiwi Size app position on product page & optimize the shape of a badge

Solved

Change Kiwi Size app position on product page & optimize the shape of a badge

BettoM14
Tourist
10 0 2

Hi,

 

I've got the following situations where i need help with.

 

1. I want to change the position of the Kiwzi Size Chart on my product page. It has to be compatible for desktop and mobile of course. Here is an example of where i want it to be:

Scherm_afbeelding 2024-04-22 om 23.37.58 (1).png

 

2. I want to re-shape and change the position of the discount badge on the different collection listings. This also needs to be compatible for desktop and mobile. Here is an example: 

Example badge.png

My webshop url is www.asam-e.com.

 

Who is able to help me :)?

Accepted Solutions (2)

theycallmemakka
Shopify Partner
1661 396 415

This is an accepted solution.

Hi @BettoM14 ,

 

The Kiwzi Size Chart edit will require more time as it involves working at the theme level. I couldn't dedicate much time to it. However, I have written custom CSS for the second fix, which is the 'discount badge'.

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code just above tag </body>

<style>
.card__badge.right {
    left: 0;
    position: absolute;
    top: calc((var(--image-padding) + 1rem) * -1);
    margin: 0px;
    padding: 0px;
    border: transparent;
    line-height: 1;
}

.badge {
    border-color: transparent;
}
</style>

theycallmemakka_0-1722355317001.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,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

View solution in original post

theycallmemakka
Shopify Partner
1661 396 415

This is an accepted solution.

Hi @BettoM14 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code just above tag </body>

<style>
slider-component .card {
    background-color: transparent;
}
</style>

theycallmemakka_0-1722413124174.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,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

View solution in original post

Replies 4 (4)

theycallmemakka
Shopify Partner
1661 396 415

This is an accepted solution.

Hi @BettoM14 ,

 

The Kiwzi Size Chart edit will require more time as it involves working at the theme level. I couldn't dedicate much time to it. However, I have written custom CSS for the second fix, which is the 'discount badge'.

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code just above tag </body>

<style>
.card__badge.right {
    left: 0;
    position: absolute;
    top: calc((var(--image-padding) + 1rem) * -1);
    margin: 0px;
    padding: 0px;
    border: transparent;
    line-height: 1;
}

.badge {
    border-color: transparent;
}
</style>

theycallmemakka_0-1722355317001.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,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

BettoM14
Tourist
10 0 2

Thanks for the help @theycallmemakka. I appreciate it :)!

 

There is still maybe one little thing where i can use your help with.  

 

I can't get rid of the collection grids on my product pages. On the main page there is no grid, because i chose for it. But the option to hide it on the product page isn't available. I tried many things, but couldn't find a solution in the settings of the template.

 

Here is the example of the homepage and product page:

 

Homepage: Homepage.png 

 

Product page:

Grey grid.png

Is it possible for you to help me with this?

theycallmemakka
Shopify Partner
1661 396 415

This is an accepted solution.

Hi @BettoM14 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code just above tag </body>

<style>
slider-component .card {
    background-color: transparent;
}
</style>

theycallmemakka_0-1722413124174.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,
Makka

Support Me: Buy me a Coffee


For quick response - Message Me


Ping me at: theycallmemakka@gmail.com

BettoM14
Tourist
10 0 2

Thanks a lot @theycallmemakka !!!