When developing a theme using a WPBakery Page Builder. You may encounter a problem while editing the page through WPBakery frontend editor. The problem is that the WPBakery frontend editor can add additional styles to your main CSS. The problem is solved quite simply. You can simply disable WPBakery frontend editor. This is considered a standard solution and does not raise questions even among ThemeForest.Net reviewers:
<?php /** * Remove VC frontend editor */ function vc_remove_frontend_editor() { if ( function_exists( 'vc_disable_frontend' ) ) { vc_disable_frontend(); } }