• Resolved janole

    (@janole)


    Hey guys,
    really love the plugin with one exception:
    It baffles me that the plugin is using the ugliest font on earth: Verdana.

    Why would the consent-bar have a different font to the rest of the website anyway?
    Since the plugin has such an “elaborate” stylesheet, it becomes extremely hard to change any styles through the sites theme.

    Of course I can “!important” overwrite every single style of the plugins stylesheet in my own theme, but I think when it comes to font and button styles, the plugin should really just rely on what’s already there, instead of putting their own thing into the mix.

    Id LOVE a setting like “remove all stylesheets” so I can theme the consent bar and popup myself.
    But at least let us change Verdana. My eyes are bleeding.

Viewing 1 replies (of 1 total)
  • You don’t like Verdana? 🙁

    You can use the following to stop the CSS from loading:

    
    add_action('wp_enqueue_scripts', 'wp_dequeue_scripts_and_styles', 999);
    function wp_dequeue_scripts_and_styles() {
        wp_dequeue_style('wpgdprc.css');
    }
    

    Add this to your functions.php and you should be fine.

    We might add the possibility in the future to disable the styling via the settings. For now, please use the above.

    • This reply was modified 5 years, 1 month ago by Donny Oexman.
Viewing 1 replies (of 1 total)
  • The topic ‘Style Plugin’ is closed to new replies.