By default WordPress adds paragraph tags to category descriptions. Stop this by adding the following to your functions.php file
// Remove p tags from category description remove_filter('term_description','wpautop');
The post Remove p tags from category description appeared first on Dare to Think.