Button icon right side

When enabling a graphic on a button it comes up on the left side of the button. Is there a way to activate it on the right side of the button?

Hi There @brewerben

Thanks for writing in! First assign a unique class to your button .my-btn-icon-right.

Then try adding the following CSS rule into your page’s custom CSS area.

.my-btn-icon-right .x-graphic {
    position: absolute;
    right: 0;
}

Hope that helps.

1 Like

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