我在我的WordPress網站中使用了自定義登錄頁面定製器插件,它製作了一個非常漂亮的插件頁面。使用CSS我可以圍繞我的徽標的角落,但我無法弄清楚如何舍入登錄表單的角落。網站上的其他內容都有圓角。以下CSS是我嘗試過的,但它不起作用。出於某種原因,只有邊框規範行被包含在渲染頁面的頭部的CSS中,並且邊框半徑保持不變。 HTML由插件的設置創建。我在4周前在他們的支持論壇上問過這個問題,但沒有得到答案。我希望這裏有人能幫助我。謝謝。我如何繞過WordPress登錄頁面的角落?
CSS
/*--------------------------------------------------------------
7.1 Login form
--------------------------------------------------------------*/
.login #login form#loginform {
border: 5px double #999 !important;
border-radius: 16px !important;
}
#login ul.square {
color: #fefdff !important; /*----Splashed white ----*/
background-color: transparent;
margin: 0 0 0 22px;
padding: 0 0 0 22px;
}
#login ul.square li {
color: #fefdff !important; /*----Splashed white ----*/
background-color: transparent;
list-style: square outside !important;
margin: 0 0 0 10px;
/* padding: 1em 0 0.3em -1em !important; */
padding: 3px 5px !important;
}
#login p#backtoblog a:link {
color: #2662ef; /* Bright blue */
background-color: transparent;
font-size: 90%;
font-weight: 400;
}
#login p#backtoblog a:hover, #login p#backtoblog a:focus {
color:#ddff22; /* vivid yellow */
background-color: transparent;
font-size: 90%;
font-weight: 400;
}
#loginform {
border-radius:16px;
}
#login .loginform {
border-radius:16px;
}
HTML
<div id="login">
<h1><a href="https://botanical-art.baeecorp.org" title="Botanical Artists for Education & the Environment (BAEE)" tabindex="-1">Botanical Artists for Education & the Environment (BAEE)</a></h1>
<form name="loginform" id="loginform" action="https://botanical-art.baeecorp.org/wp-login.php" method="post">
<p>
<label for="user_login">Username or Email Address<br>
<input name="log" id="user_login" class="input" value="" size="20" type="text"></label>
</p>
<p>
<label for="user_pass">Password<br>
<input name="pwd" id="user_pass" class="input" value="" size="20" type="password"></label>
</p>
<p class="forgetmenot"><label for="rememberme"><input name="rememberme" id="rememberme" value="forever" type="checkbox"> Remember Me</label></p>
<p class="submit">
<input name="wp-submit" id="wp-submit" class="button button-primary button-large" value="Log In" type="submit">
<input name="redirect_to" value="https://botanical-art.baeecorp.org/wp-admin/" type="hidden">
<input name="testcookie" value="1" type="hidden">
</p>
</form>
我搜索了一些相關的問題,但他們沒有處理WordPress和表單邊界的角落。 –