How to put button graphic after text instead of before

Hi see title thanks. Sometimes you want a symbol like an arrow after the text to imply “Next” for example. Is there a way to use X icons after the text instead of before?

Hello There,

Thanks for writing in! To move the icon graphic to the right of the text, please edit your page back in Cornerstone and insert the following custom css in the settings tab, Settings > Custom CSS

.x-anchor-button .x-anchor-text {
    padding-right: 15px;
}

.x-anchor-button .x-graphic{
    position: absolute;
    right: 0;
    margin: 0 10px;
}

Hope this helps.

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