wp-login.php 页面修改[三]

wp-login.php 页面修改[三]

1
https://wangejiba.com/4911.html

1. 打开functions.php

1
2
cd /home/wwwroot/default/bndstone/wp-content/themes/flatsome/
vi functions.php

2. 加入如下代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function custom_loginlogo() {
echo '<style type="text/css">

html,body.login{background:#f2f2f2;font-size:14px;font:Arial, Lucida Grande, Tahoma,sans-serif;}  
html a{text-decoration: none;}  
#login {background:#fff;border: 1px solid #ccc;width:400px;margin: 40px auto 0;padding: 10px 10px 20px 10px;border-radius:5px;box-shadow:0 4px 10px -1px rgba(200, 200, 200, 0.7);}    
.login h1 a {background-image: url('.get_bloginfo('template_directory').'/pic/bndstone_logo01.png) !important; background-size: 265px !important;width:265px !important; }    
.updated, .login .message {background:#fff;border: none;text-align: center;}    
.login form {box-shadow:none;border: none;}  
#loginform, #registerform, #lostpasswordform{background:transparent;border:none;}    
.button-primary,.submit .button-primary,#login form .submit input {width:83px;height:25px;font-weight: bold;border:none;}  

</style>';
}
add_action('login_head', 'custom_loginlogo');

3. 网页效果:

123

wp-login.php 页面修改[四]

1
https://www.jb51.net/article/84748.htm

1. 打开functions.php

1
2
cd /home/wwwroot/default/bndstone/wp-content/themes/flatsome/
vi functions.php

2. 加入如下代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* 页面css */
html,body,#wpbody,.form-table .pre{background: #ffffff url("../images/login-bg-body.jpg");? font-size: 13px; font-family: 微软雅黑,宋体;}
a{text-decoration: none;}
body.login,body{border: none;}
h1 a{display: none;}
 
/* 登陆框主体部分css */
#login{background: url("../images/login-bg.jpg") no-repeat;? width: 650px;? height: 500px;? position: relative; margin: 50px auto;}
#loginform {padding-left: 110px;? float: right;? border-left: 2px solid #e3e3d3}
#loginform #user_login , #loginform #user_pass {border: 2px dotted #666666}
form{width: 280px;? height: 166px;? padding: 45px 0px 0px 0px;? background: url() no-repeat; margin: 60px 0 0 0; border: none; -moz-border-radius: 0; -

webkit-border-radius: 0; border-radius: 0; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;}
#user_pass,#user_login,#user_email{width: 190px; height: 20px; margin-bottom: 10px;}
 
/* 登陆框各组成css */
label {font-size: 13px; color: #fff;}
form .forgetmenot label {font-size: 13px;? color: #666666;}
.login #nav a{color: #666666 !important;}
input.button-primary, button.button-primary, a.button-primary{background: none; border: none; text-shadow: none; margin: 0; padding: 0; font-size: 13px;

font-family: 微软雅黑,宋体;}
form .submit input {color: #666666;}
input.button-primary: active, button.button-primary: active, a.button-primary: active {background: none;}
 
/* 其他 */
#nav{margin: 0; padding: 0; position: absolute; text-shadow: none;}

3. 网页效果:

123

Leave a Reply

Your email address will not be published. Required fields are marked *