BakerOfIdeas Posted March 20, 2019 Share Posted March 20, 2019 On my form I want to remove the font-awesome icon on the 'continue' button. Where do I remove that? See image. I'm using version 4.7 font-awesome, some of the font-awesome icons I use on my website aren't supported with the latest version and the two collide when used together. <button type="submit" class="btn btn-primary btn-lg">Continue <i class="fas fa-arrow-circle-right"></i></button> 0 Quote Link to comment Share on other sites More sharing options...
Kian Posted March 20, 2019 Share Posted March 20, 2019 This one should work. <button type="submit" class="btn btn-primary btn-lg">Continue <i class="fa fa-arrow-circle-right"></i></button> If it doesn't then remove the icon. <button type="submit" class="btn btn-primary btn-lg">Continue</button> 0 Quote Link to comment Share on other sites More sharing options...
BakerOfIdeas Posted March 20, 2019 Author Share Posted March 20, 2019 @Kian, what file is that in? 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted March 21, 2019 Share Posted March 21, 2019 probably /templates/orderforms/boxes/products.tpl going by that screenshot... but you'd likely have to change every template in the boxes folder that uses this icon (adddomain, the three configure templates, viewcart and domainrenewals) another option would be to use css to remove the icon (e.g in custom.css)... i.fas.fa-arrow-circle-right {display: none !important;} it should work, but because there is a hardcoded space in the output, the "Continue" will appear to be off-centre... so in this instance, it might be easier to edit the template as Kian suggests. you could even change the icon using css - though I don't know if this would work in your case... i.fas.fa-arrow-circle-right:before {content: "\f061";} 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.