We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How to move a button some px to the left or right

Solved

How to move a button some px to the left or right

NikosBat
Navigator
489 1 108

Hello friends, how can I move some px this button to the left or right? I only know how to adjust the hight of the button.

Bildschirmfoto 2025-01-01 um 15.14.55.png

 

 

Accepted Solution (1)

DaisyVo
Shopify Partner
4469 501 598

This is an accepted solution.

Hi @NikosBat 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

div[aria-label="1 von 3"] .slideshow__text.banner__box.content-container .banner__buttons {
    padding-right: 64px;
}

 

Here is the result: image_720.png

 

If you want to move it to the left, use this code (padding-right).
To move it to the right, use padding-left.

 

I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 4 (4)

DaisyVo
Shopify Partner
4469 501 598

This is an accepted solution.

Hi @NikosBat 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

div[aria-label="1 von 3"] .slideshow__text.banner__box.content-container .banner__buttons {
    padding-right: 64px;
}

 

Here is the result: image_720.png

 

If you want to move it to the left, use this code (padding-right).
To move it to the right, use padding-left.

 

I hope this helps

 

Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
NikosBat
Navigator
489 1 108

Thanks DaisyVo I appreciate it, that solved my problem

NikosBat
Navigator
489 1 108

Hey DaisyVo, the button is also moving in the mobile version. Can I somehow adjust the padding only for desktop version?

DaisyVo
Shopify Partner
4469 501 598

Hi @NikosBat 

 

@media screen and (min-width: 1024px){
div[aria-label="1 von 3"] .slideshow__text.banner__box.content-container .banner__buttons {
    padding-right: 64px;
}
}

 

Please change this old code to this code

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution