Goodfella
Teen Bird
I would recommend making a slight CSS edit to the sign-up button now. This will enhance appearance.
I use the newspaper theme, here are two examples:
This is the current default sign up now button:
I recommend adding these changes to the /public/css/xenword-public.css file
This code will stretch the width of the button from 70% to 100% and it will make sure the text is centered vertically.
End result:
Thank you for the consideration.
I use the newspaper theme, here are two examples:
This is the current default sign up now button:
I recommend adding these changes to the /public/css/xenword-public.css file
This code will stretch the width of the button from 70% to 100% and it will make sure the text is centered vertically.
CSS:
/** XenForo Sign up Button */
.xenword_signup {
display: block;
width: 100%;
height: 1.6em;
text-align: center;
font-weight: bold;
font-size: 1.5em;
height: 40px;
line-height: 40px;
font-family: Calibri,'Trebuchet MS',Verdana,Geneva,Arial,Helvetica,sans-serif;
color: #ffffff !important;
background: #8c1515;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
text-shadow: 0 0 0 transparent, 0px 0px 3px rgba(0,0,0, 0.5);
End result:
Thank you for the consideration.