Button Icon Direction

Hello

How can i flip button icon to 45 - degree as shown in the image attached

Kind regardsbutton

Hello @SamJoe,

Thanks for writing to us.

I would suggest you please add this custom CSS code to the element CSS, you need to go to the button element —>customize —>element CSS

$el.x-anchor .x-graphic-icon {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg); 
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
} 

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

@prakash_s

Very helpful

Thank you

You are most welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.