hi,
on the login section, “create account” button is non visible - so basically when i input info i cannot click to create account - how can i fix it?
i also want this to appear as a clickable text
Share your URL please so I can take a look.
If you like my design here you can go to online-shop->themes->your theme → edit code and find theme.css
Paste this at the bottom
a#customer_register_link {
display: block;
padding: 1em;
background: #082e52;
border-radius: 2px;
box-shadow: 0 0 20px #00000047;
font-size: clamp(23px,2vw,27px);
color: #fff;
}
Ok you can try this then. Just replace the last one with it.
input.btn.btn--full,
a#customer_register_link {
display: block;
padding: 1em;
background: #082e52;
border-radius: 2px;
box-shadow: 0 0 20px #00000047;
font-size: clamp(23px,2vw,27px);
color: #fff;
}
thank you so much !! it worked ![]()
Sorry this is even better so that on the big screen the text is visible if the mouse hovers over it:
input.btn.btn--full,
a#customer_register_link {
display: block;
padding: 1em;
background: #082e52;
border-radius: 2px;
box-shadow: 0 0 20px #00000047;
font-size: clamp(23px,2vw,27px);
color: #fff;
}
a#customer_register_link:hover,
input.btn.btn--full:hover {
color: #082e52;
}
Awesome - add the last one as well and test it on the big screen. And if you would be so kind and mark it as accepted it would be just great.
yes of course i will. another question please, when i create the account, there is a block with red font that appears at the top of the page saying email sent for confirmation - can i change that font to green? cause otherwise it can give an impression that the account creation didnt work.
also is there a way to remove that layer all together ? meaning no need for users to go and verify their account by email?
lastly, on the mobile version, can i bring the LOG IN text as the first one before the categories? and can we have it on capital letter?
All possible. Would you like me to do it all for free?
hello! could u please revert back on latest messages?
Sorry for taking so long:
button.btn.btn--full,
input.btn.btn--full,
a#customer_register_link {
display: block;
padding: 1em;
background: #082e52;
border-radius: 2px;
box-shadow: 0 0 20px #00000047;
font-size: clamp(23px,2vw,27px);
color: #fff;
}
button.btn.btn--full:hover,
input.btn.btn--full:hover,
a#customer_register_link:hover,
input.btn.btn--full:hover {
color: #082e52;
}