Crave Theme - Get rid of arrow in Buttons

Hi! I am using the Crave Theme, and can anyone please tell me how do I get rid of the arrow in the Click Buttons. It is driving me insane. I just want it to say “Shop Now” and not “Shop Now -->”

Thanks in advance!

Try adding this code to the bottom of base.css
It should remove the arrows across the website.

.icon.icon-arrow {
display:none;
}

Welcome to the Shopify community!
Thanks for your question.

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.

.icon.icon-arrow {

display:none !important;

}

If this post is helpful for you Kindly Like and Accept this as a solution.