How to remove WordPress admin menus
If you want to remove WordPress admin menu items, insert this code on your function.php file: function wpwebnet_remove_menus(){ $user = wp_get_current_user(); if ( in_array( 'shop_manager', (array) $user->roles ) ) { // remove_menu_page( 'index.php' ); //Dashboard...
How to insert custom CSS code for WordPress
If you need to insert a custom CSS code into your WordPress site, you must go to "Appearance", "Theme Editor". Choose "style.css" file from the right menu and after insert your CSS code. Click "Update file" to save your CSS code.
How to remove DIVI header shadow line
Divi Theme header has a small grey line at the bottom that divided the main menu from the content. This "shadow" at the bottom of the header can be removed, just use the following CSS:#main-header { box-shadow: none !important; } If you want to remove the shadow...


