Thread Starter
Arun G
(@arunlapog)
I mean the bloat bar. its annoying!
-
This reply was modified 5 years, 10 months ago by
Arun G.
Rynald0s
(@rynald0s)
Automattic Happiness Engineer
Hi @arunlapog!
Can you please send me a screenshot of the bloat bar you are referring to? You can use the free Snipboard.io tool to send me the screenshot, thanks.
Cheers!
Thread Starter
Arun G
(@arunlapog)
Hi Rynald0s
Thanks for your response. Sorry For my late reply.
here is the screenshot https://snipboard.io/V9dNUs.jpg
Rynald0s
(@rynald0s)
Automattic Happiness Engineer
Hi @arunlapog!
You can try the following CSS code and see if that helps:
.woocommerce-embed-page .woocommerce-layout__header {
display: none;
}
This can be added to the “Additional CSS” section in your customizer.
Cheers!
Thread Starter
Arun G
(@arunlapog)
Ok, Temporary fix. Thanks
Thread Starter
Arun G
(@arunlapog)
Hi @rynald0s!
I tried adding your css to “Additional CSS”. But it doesn’t worked. So have added the following code thru functions.php. Now its perfect!
add_action(‘admin_head’, ‘my_custom_styles’);
function my_custom_styles() {
echo ‘<style>
.woocommerce-layout__header {
position:static;
}
.woocommerce-embed-page #screen-meta, .woocommerce-embed-page #screen-meta-links{
top:1px;
}
</style>’;
}