• DebbyK

    (@debbyk)


    I am pretty familiar with CSS but would like to know where to change the styling options. Is there a guide somewhere that lists out the classes that can be edited for the widget? I love the features of this plugin, but the default styling is sort of ugly. Specifically, I’d like to change the background color and padding of the widget.

    See bottom of page for current style: http://www.ttinvent.com.

    Thank you.

    https://wordpress.org/plugins/gc-testimonials/

Viewing 1 replies (of 1 total)
  • Chris Dillon

    (@cdillon27)

    The widget stylesheet is here:
    /wp-content/plugins/gc-testimonials/assets/css/gctwidget.css

    To skip loading the stylesheet altogether so you can start from scratch, try this in your theme’s functions.php:

    function my_dequeue_styles()
    {
      // wp_dequeue_style( 'gctstyles' );  // for shortcodes
      wp_dequeue_style( 'gctwidgetstyles' );  // for widget
    }
    add_action( 'wp_enqueue_scripts', 'my_dequeue_styles', 99 );

Viewing 1 replies (of 1 total)
  • The topic ‘Widget Styling’ is closed to new replies.