您只需添加一个函数来设置登录表单的样式:
function my_login_css() {
?>
<style type="text/css">
#wp-submit {
border-color: #777;
background: #999;
box-shadow: none;
text-shadow: none;
border-radius: 0px;
}
#wp-submit:hover {background: #ccc}
</style>
<?php
}
add_action(\'login_enqueue_scripts\', \'my_login_css\');
当使用像Avada这样的主题时,最好将这些自定义函数添加到子主题中。
More information, specific to Avada.