Hi. I want to move the “join the waitlist” button to the right and make it bigger. How can I do that?
1 Like
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.hero__text-shadow.aos-init.aos-animate .btn {
font-size: 18px;
padding: 10px 20px;
}
.hero__text-shadow.aos-init.aos-animate {
float: right;
}
1 Like
Please add the following CSS code to your assets/theme.css bottom of the file.
#shopify-section-template--19837156491568__slideshow .hero__link {width: 300px !important; }
#shopify-section-template--19837156491568__slideshow .btn{padding: 25px 25px !important; width: 100% !important;}
Thanks!
1 Like
Hello @ProvenGrit ,
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code
Go to Assets > base.css file
Add this following code at the bottom of page:
.cta-button {
float: left;
font-size: 18px;
padding: 12px 20px;
}
Save changes
Hope this can help. Let us know if you need any further support.
Ali Reviews team.
1 Like
1 Like

