• Resolved tangee

    (@tangee)


    Hi,
    the button to leave a message is invisible, it only appears when the pointer goes above the button.
    How can we change that ?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Marcel Pol

    (@mpol)

    It seems your theme sets the colors for ‘btn-default’ all wrong. You should contact the maintainer of the theme.

    You could as a workaround add this PHP code:

    
    function my_gwolle_gb_button_class( $classes ) {
    	// $classes is a string
    	$classes .= ' btn-primary'; // Add to it or use str_replace. Mind the space.
    	return $classes;
    }
    add_filter( 'gwolle_gb_button_class', 'my_gwolle_gb_button_class', 10, 1 );
    
Viewing 1 replies (of 1 total)

The topic ‘“Leave a msg” button invisible’ is closed to new replies.