- This topic has 1 reply, 2 voices, and was last updated 11 years, 7 months ago by .
Viewing 2 reply threads
Viewing 2 reply threads
- You must be logged in to reply to this topic.
Home › Forums › Mikmag WordPress theme › Toolbar 28px Space Issue
Hello,
Need some help finding the right file to edit. The issue with the new theme is the WP toolbar in the header adding 28px of blank space between the toolbar and the body start. I’ve tried removing the toolbar for now, but I’d really like to have proper functionality.
The problem is I can’t seem to find the file(s) to edit that control body behavior for logged in users:
<body class=”logged-in page page-id-47 page-template-default admin-bar customize-support”>
Also adding style=”margin-top: -28px;” will result in that being applied to the site for non-logged in users too, so 28px gets chopped off the top..
Thanks in advance for your insights.
Hi Justin,
We are aware of this issue and have it listed as something that will be fixed in the next update. As we’ve got a lot of things running at the moment and there are also some other fixes to do, I cannot quite make an estimate of when that update will be available.
Kevin
Solved: per this WP.org thread: http://wordpress.org/support/topic/31-update-causing-28px-top-spacing-in-html-body
“I followed Zack’s advice by adding the following to my custom theme ‘functions.php’ script:”
add_action('get_header', 'my_filter_head'); function my_filter_head() { remove_action('wp_head', '_admin_bar_bump_cb'); }