A asusforo Member Mar 23, 2014 #1 How can i remove/disable the stackalerts? The litlle alert popups that appears on the left bottom of screen.
How can i remove/disable the stackalerts? The litlle alert popups that appears on the left bottom of screen.
Chris D XenForo developer Staff member Mar 23, 2014 #2 I think you can only remove them using CSS. Code: #StackAlerts { display: none; } The above added to EXTRA.css should hide it. If not, try adding !important after none. They are very useful though... Upvote 0 Downvote
I think you can only remove them using CSS. Code: #StackAlerts { display: none; } The above added to EXTRA.css should hide it. If not, try adding !important after none. They are very useful though...