collection list -align arrows to the right

Solved

collection list -align arrows to the right

batyaJandMore
Excursionist
42 0 14

hey,

i need your help aligning the arrows of the collection list to the right as show in the image.

thanks in advance.

batyaJandMore_0-1736067387778.png

https://z8p66wloo6n24dcm-65779892391.shopifypreview.com

 

Accepted Solution (1)
DaisyVo
Shopify Partner
4447 496 590

This is an accepted solution.

HI @batyaJandMore 

 

Please add this code more

 

.collection-list-wrapper h3.card__heading > a span.icon-wrap > svg {
    transform: rotate(180deg);
}

 

image_720.png

 

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
4447 496 590

Hi @batyaJandMore 

 

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.
 

 

.collection-list-wrapper h3.card__heading > a {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: flex-end !important;
}​

 

Here is the result:  

image_720.png

 

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
batyaJandMore
Excursionist
42 0 14

Hey Daisy,

want can i do to flip the arrows side?

batyaJandMore_0-1736070248155.png

 

i want the arrow head to the left

DaisyVo
Shopify Partner
4447 496 590

This is an accepted solution.

HI @batyaJandMore 

 

Please add this code more

 

.collection-list-wrapper h3.card__heading > a span.icon-wrap > svg {
    transform: rotate(180deg);
}

 

image_720.png

 

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

NguyenVinh
Shopify Partner
9 2 3

You can refer to this css:

.collection-list-wrapper .card__heading a {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.collection-list-wrapper .card__heading .icon-wrap svg {
  transform: rotate(-180deg);
}