diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php
index 66599380d9..155a99b708 100644
--- a/wp-admin/includes/template.php
+++ b/wp-admin/includes/template.php
@@ -664,12 +664,12 @@ function parent_dropdown( $default = 0, $parent = 0, $level = 0 ) {
function browse_happy() {
$getit = __( 'WordPress recommends a better browser' );
echo '
-
+
';
}
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)
- add_action( 'admin_footer', 'browse_happy' );
+ add_action( 'in_admin_footer', 'browse_happy' );
function the_attachment_links( $id = false ) {
$id = (int) $id;
diff --git a/wp-admin/wp-admin.css b/wp-admin/wp-admin.css
index 4ef0baf6d0..dfd3b58ace 100644
--- a/wp-admin/wp-admin.css
+++ b/wp-admin/wp-admin.css
@@ -971,6 +971,16 @@ a.view-comment-post-link {
/* Admin Footer */
+html, body {
+ height:100%;
+}
+#wpwrap {
+ position: relative;
+ min-height: 100%;
+}
+#wpcontent{
+ padding-bottom: 65px;
+}
#footer {
clear: both;
height: 65px;
@@ -978,6 +988,8 @@ a.view-comment-post-link {
margin: 0;
background: #464646 url('images/logo-ghost.png') no-repeat 20px 10px;
color: #999;
+ position: relative;
+ margin-top: -75px;
}
#footer a {
@@ -1305,3 +1317,4 @@ ul.categorychecklist li {
.wp-no-js-hidden { display: none; }
.ui-tabs-hide { display: none; }
.form-input-tip { color: #999; }
+