Make sign up here a button
Below is what I have now with just the text, I would like to make the "Join here" a button under the log in for splash.page. Could someone please help with the code for this?
Not a member yet? JOIN HERE !
-
-
·
LeonidS
- ·
Hello John Curtis !
Try to change the value of the _sys_txt_login_description language key. Change it from:
Not a member yet? <a href="{0}">Sign up.</a>
to:
Not a member yet? <button type='button" onclick="windlow.location.href='{0}';" value="Sign up" />
-
·
LeonidS
-
Great, Thank you very much.
-
LeonidS . Sorry, that didn't work.
-
- · Rocco
-
·
In reply to John Curtis
- ·
Maybe - l (window)
-
- · Jose Sadel
- ·
Or you can just do inline styles defined inside the anchor tag. Code will be more messy but something like this should work:
Not a member yet? <a href="{0}">
<span style="
background-color: #4c679f;
color: white;
font-size: 1rem;
font-weight: 700;
border-radius: 3px;
padding: 6px 8px;
text-decoration: none;
text-transform: uppercase;">Sign up</span>
</a> -
Thanks Jose Sadel . that got the job done.