0

I have a custom background image on one of my Wordpress login pages. After upgrading to the latest version this background image is now squished down and looks terrible.

I can't find any issues in the CSS - maybe there is some type of background-width or background-height property? But if anybody can figure it out that would be so incredible!

Here's the link to the login page: http://www.destinyislands.com/wp-login.php

4

2 に答える 2

2

はい、wp-admin / css/wp-admin.cssに新しいcssファイルがあります。

.login h1要素には、274px63pxの背景サイズが割り当てられます。その線を取り除くと、それはうまく見えます。

于 2012-06-14T15:51:01.723 に答える
1

「background-size: 274px 63px;」の background-size 属性があります。それを削除すると、そのイメージを修正できます。

または、これを追加して wp-admin.css を上書きします

background-size: 330px 128px;
于 2012-06-14T15:48:25.977 に答える