Plugin Directory

Changeset 657011


Ignore:
Timestamp:
01/22/2013 05:31:57 PM (13 years ago)
Author:
Obadiah
Message:

Updating super-custom-login.php to force logo image to be 328 pixels wide by 84 pixels high using height and width attributes.

Updating readme.txt to include info for Version 0.6.

Tagging version 0.6

Location:
super-custom-login
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • super-custom-login/trunk/readme.txt

    r654412 r657011  
    55Requires at least: 3.1
    66Tested up to: 3.5
    7 Stable tag: 0.5
     7Stable tag: 0.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3131== Changelog ==
    3232
     33= 0.6 =
     34* Forced logo image to be 328 pixels wide by 84 pixels high with "width:328px!important;" and "height:84px!important;". Tested plugin with WordPress 3.5. 01/22/2013.
     35
    3336= 0.5 =
    34 * Forced logo image to be 328 pixels wide by 84 pixels high. Tested plugin with WordPress 3.5. 01/17/2013.
     37* Forced logo image to be 328 pixels wide by 84 pixels high with "background-size:328px 84px !important;". Tested plugin with WordPress 3.5. 01/17/2013.
    3538
    3639= 0.4 =
  • super-custom-login/trunk/super-custom-login.php

    r654412 r657011  
    44Plugin URI: http://middleearmedia.com/labs/plugins/super-custom-login/
    55Description: This plugin customizes your login screen. It replaces the WordPress logo with your custom logo. It makes the logo link to your homepage. It enhances security by removing error messages upon failed login attempts. And it includes a template file for your logo.
    6 Version: 0.5
     6Version: 0.6
    77License: GPLv2 or later
    88Author: Obadiah Metivier
     
    1414function custom_login_logo() {
    1515   echo '<style type="text/css">
    16        h1 a { background-image:url('.get_bloginfo('stylesheet_directory').'/images/login_logo.png) !important; background-size: 328px 84px !important; }
     16       h1 a { background-image:url('.get_bloginfo('stylesheet_directory').'/images/login_logo.png) !important; background-size: 328px 84px !important; height: 84px !important; width: 328px !important; }   
    1717   </style>';
    1818}
Note: See TracChangeset for help on using the changeset viewer.