MyBB Community Forums

Full Version: Advanced Sidebox, how to get rid of heading bar in box?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm displaying adsense, and want the heading bar gone.

I tried erasing all the tr td html. That pushes the heading bar to the bottom.

Also tried unchecking the 'Use Template' box in edit custom box, but after saving, it seems to re-enable that box (Use Template box is re-checked when going into edit).

Any ideas?
at present I can only suggest a css trick to remove table head from that ASB custom box

you can add below style code at the bottom of the theme's global.css (advanced edit mode)
.asb_custom_1_main_4 thead {display: none!important;}
hard refresh your browser (eg. press CTRL + F5) after saving changes to the style sheet
Ahhh... Butter again. Thanks .m.