Content going full width even though container is not

From a quick look, the contact form fields are centered, with a left and right column. This is on a laptop display; didn’t check other devices. But, the best way to diagnose this is with the Developer Tools. Right-click your form area, select “Inspect Element” (or whatever or F12), then poke around looking at the … Read more

current menu item hover not working?

I just checked your website and found some helpful CSS for your site. Find this line of CSS and change your color code, it will surely work. For menu hover and focus (‘Use this CSS in bedcentregrimsby.css’) .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover { color: #a4cb9a; } Please feel … Read more

Admin bar default color scheme for nonregistered/nonlogged users

Follow these steps: Use the following code in your functions.php or your site specific plugin: function set_default_admin_color($user_id) { $args = array( ‘ID’ => $user_id, ‘admin_color’ => ‘coffee’ ); wp_update_user( $args ); } add_action(‘user_register’, ‘set_default_admin_color’); Now, add these lines to force “Coffee” color scheme to be displayed in the admin bar: if ( !current_user_can(‘manage_options’) ) remove_action( … Read more

Remove dashicons.min.css conditionally

Try this. add_action( ‘wp_enqueue_scripts’, ‘go_dequeue_dashicons’ ); function go_dequeue_dashicons() { if ( ! is_user_logged_in() && !is_page( array( 9, 10 ) ) && !in_category( array( 29, 2 ) ) ) { wp_deregister_style( ‘dashicons’ ); } } I basically just combined the IF statements and changed || to &&.