Debug toolbar not showing in Chrome
soderluk opened this issue · comments
The HTML of the toolbar is visible when viewing source, but Chrome does not show the toolbar at all.
Toolbar works normally on Firefox. Chrome somehow messes up the HTML when the toolbar HTML is outside the tags.
Removing position: fixed of #ydtb-toolbar on main.css:37 fix panel in chrome. it is bag.
I've had the same problem as well - seems to have appeared when we updated the app to use Bootstrap 3.2.0 (YiiBooster 4.01) - and does not seem to be chrome-specific.
The fix provided by @grigory51 seems to work great. Thanks!
Added this to mysite.css:
/* fix for yii-debug-toolbar not showing */
#ydtb-toolbar {
position: inherit;
}
Same issue here. @PrplHaz4 fix works with a minor tweak.
/* fix for yii-debug-toolbar not showing */
#ydtb-toolbar {
position: inherit!important;
}