Shopify themes, liquid, logos, and UX
hi guys, in account creation page I want to change the label of this button "Created" to "Submit" and change the color of the button to #e34e30ff. See the image below for your reference. Thanks
Here is my shop link : https://89dd9e-27.myshopify.com/
Hi @remz1234 , go to base.css file and add the following code :
button.ymq-b2b-rf-create {
color: #e34e30ff !important;
}
To change created to submit go to your admin and click on "edit default theme content" then search for the word "created" and you can replace it from there:
hi @Abdosamer already tried this but still the button label is "Created". I think it has something to do with the app "ymq b2b" since I'm using its custom registration form.
@remz1234 , I will need to access the store to better solve this problem, feel free to contact me.
Hi @remz1234,
Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above </body> tag:
<script>
let id = setInterval(() => {
let btn_create = document.querySelector(".ymq-b2b-rf-create-box .ymq-b2b-rf-create");
if(btn_create) {
clearInterval(id);
btn_create.innerText = "Submit";
}
}, 1000);
setTimeout(() => {
clearInterval(id);
}, 10000);
</script>
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025