maddentim
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Raw HTML] PHP Fatal ErrorJust following up on this. I deployed the dev version you suggested and the errors have stopped. Thanks for your help.
Best,
TimForum: Plugins
In reply to: [Raw HTML] PHP Fatal ErrorOK, thanks. I will try it this weekend and let you know if it helps.
Thanks!
Forum: Plugins
In reply to: [WP Responsive Menu] Compatibility with the mobile WordPress admin barWhen I implemented the plugin I had to hack a couple things. First, the absolute positioning of the menu was off. In wp-responsive-menu.php, I changed line 91 from top:28px; to top:46px;
@@ -88,7 +88,7 @@ function wprmenu_header_styles() { #wprmenu_bar { background: <?php echo $options["bar_bgd"] ?>; <?php if (is_admin_bar_showing()) : ?> - top:28px; + top:46px; <?php endif; ?> } #wprmenu_bar .menu_title, #wprmenu_bar .wprmenu_icon_menu {and fix the padding-top on line 148 of wp-responsive-menu.php to 88px…
@@ -146,7 +146,7 @@ function wprmenu_header_styles() { } <?php if (is_admin_bar_showing()) : ?> #wprmenu_menu.left ul#wprmenu_menu_ul, #wprmenu_menu.right ul#wprmenu_menu_ul { - padding-top: 70px; /* 42 + 28 */ + padding-top: 88px; /* 42 + 28 */ } <?php endif; ?> #wprmenu_menu.right {Also, I had to override the z-index’s of .wprmenu and .wprmenu.left (to 498 and 497 respectively) so they were not on top of the wp admin mobile menu
Not sure if these changes will work for everyone…
Viewing 3 replies - 1 through 3 (of 3 total)