Hi,
1) You have to add CSS class into your menu item - Appearance -> Menus tab, Screen options (right top corner - check CSS classes), e.g. add class my-button.
Now you have to add this code into Creativity/css/override.css file (first enable this override option from Template Options -> Advanced tab).
- Code: Select all
.my-button a {
color: #333!important;
margin: 20px 0 0 26px;
background: transparent!important;
border: 1px solid #ddd;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-size: 15px;
height: 34px!important;
line-height: 34px!important;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
display: block;
}
.my-button a:hover {
background: #68b5ff!important;
border-color: #68b5ff!important;
color: #fff!important;
}
2) All texts are included in the language .pot file - you can translate them or directly you can find these texts in Creativity/layouts/login.php file.