Title: Category Display
Last modified: September 1, 2020

---

# Category Display

 *  [mohitbd](https://wordpress.org/support/users/mohitbd/)
 * (@mohitbd)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/)
 * When I set then show me like this [https://prnt.sc/u9eppm](https://prnt.sc/u9eppm)
 * Actually I want to like this [https://prnt.sc/u9eq12](https://prnt.sc/u9eq12)
 * How to setting?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fcategory-display-12%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 1 through 15 (of 24 total)

1 [2](https://wordpress.org/support/topic/category-display-12/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/category-display-12/page/2/?output_format=md)

 *  Plugin Author [themifyme](https://wordpress.org/support/users/themifyme/)
 * (@themifyme)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13363754)
 * Hi,
 * Your theme set the labels to display: block, that makes the labels to appear 
   below the checkbox, but you can change the label to inline-block display by adding
   this CSS to wp-admin > Appearance => Customize > Additional CSS or to your Child
   Theme’s style.css:
 *     ```
       .wpf_item label {
           display: inline-block !important;
           margin-bottom: 0 !important;
           margin-left: 5px;
           vertical-align: middle !important;
       }
       ```
   
 * Please let us know how it works for you.
 *  Thread Starter [mohitbd](https://wordpress.org/support/users/mohitbd/)
 * (@mohitbd)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13364229)
 * Thanks, It’s working but need more padding on top, how to code? check link [https://prnt.sc/ubvr7h](https://prnt.sc/ubvr7h)
 *  Plugin Author [themifyme](https://wordpress.org/support/users/themifyme/)
 * (@themifyme)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13374077)
 * Hi,
 * You can add more space at the bottom of the FIlter name by adding this CSS to
   wp-admin > Appearance => Customize > Additional CSS or to your Child Theme’s 
   style.css:
 *     ```
       .wpf_item .wpf_item_name {
           margin-bottom: 15px !important;
       }
       ```
   
 * You can change the value 15px to add more or less space, then please let us know
   how it works for you.
 *  Thread Starter [mohitbd](https://wordpress.org/support/users/mohitbd/)
 * (@mohitbd)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13374473)
 * Thank you so much, just need 1 more help, how to remove border from the category?
   check ss [https://prnt.sc/uddpse](https://prnt.sc/uddpse)
 *  Plugin Author [themifyme](https://wordpress.org/support/users/themifyme/)
 * (@themifyme)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13379060)
 * Hi,
 * You can remove the border from the filter titles with this CSS:
 *     ```
       .wpf_item .wpf_item_name {
           border-bottom: none;
       }
       ```
   
 * Please let me know how it works for you.
 *  Thread Starter [mohitbd](https://wordpress.org/support/users/mohitbd/)
 * (@mohitbd)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13379718)
 * That’s code not working.
 * I placed the below code :
 * .wpf_item label {
    display: inline-block !important; margin-bottom: 0 !important;
   margin-left: 5px; vertical-align: middle !important; }
 * .wpf_item .wpf_item_name {
    margin-bottom: 20px !important;
 * }
 * .wpf_item .wpf_item_name {
    border-bottom: none; }
 *  Plugin Author [themifyme](https://wordpress.org/support/users/themifyme/)
 * (@themifyme)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13384580)
 * Hi,
 * Sorry I forgot `!important` please replace the previous CSS with this:
 *     ```
       .wpf_item .wpf_item_name {
           border-bottom: none !important;
       }
       ```
   
 * and let me know how it works.
 *  Thread Starter [mohitbd](https://wordpress.org/support/users/mohitbd/)
 * (@mohitbd)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13385309)
 * Thanks a ton! it’s working 🙂
 *  Plugin Author [themifyme](https://wordpress.org/support/users/themifyme/)
 * (@themifyme)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13390386)
 * Hi,
 * Happy I could help! If you like our products / services, please consider to write
   a review: [https://wordpress.org/support/plugin/themify-wc-product-filter/reviews/#new-post](https://wordpress.org/support/plugin/themify-wc-product-filter/reviews/#new-post)
 *  Thread Starter [mohitbd](https://wordpress.org/support/users/mohitbd/)
 * (@mohitbd)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13395705)
 * I did 🙂
 *  Thread Starter [mohitbd](https://wordpress.org/support/users/mohitbd/)
 * (@mohitbd)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/category-display-12/#post-13396455)
 * Hello,
 * when I try to filter on top on the shop page then vanish the sidebar category
   from page [https://prnt.sc/ug0vv9](https://prnt.sc/ug0vv9)
 *  Plugin Author [themifyme](https://wordpress.org/support/users/themifyme/)
 * (@themifyme)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/category-display-12/#post-13416465)
 * Hi,
 * The Sidebar content visibility is hidden when you apply the view change, this
   can be resolved by adding this CSS to wp-admin > Appearance => Customize > Additional
   CSS:
 *     ```
       .sidebar-inner * {
           visibility: visible !important;
       }
       ```
   
 * Please let me know how it works for you.
 *  Thread Starter [mohitbd](https://wordpress.org/support/users/mohitbd/)
 * (@mohitbd)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/category-display-12/#post-13417150)
 * Thanks, Its worked.
 *  Plugin Author [themifyme](https://wordpress.org/support/users/themifyme/)
 * (@themifyme)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/category-display-12/#post-13421471)
 * Hi,
 * Happy I could help! If you need help with anything else, please open a new topic.
 * If you like our products/services, please consider to rate us on our Facebook
   page: [https://www.facebook.com/themify/reviews](https://www.facebook.com/themify/reviews)
 * Have a nice day!
 *  Plugin Author [themifyme](https://wordpress.org/support/users/themifyme/)
 * (@themifyme)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/category-display-12/#post-13421472)

Viewing 15 replies - 1 through 15 (of 24 total)

1 [2](https://wordpress.org/support/topic/category-display-12/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/category-display-12/page/2/?output_format=md)

The topic ‘Category Display’ is closed to new replies.

 * ![](https://ps.w.org/themify-wc-product-filter/assets/icon-128x128.png?rev=1535808)
 * [Themify - WooCommerce Product Filter](https://wordpress.org/plugins/themify-wc-product-filter/)
 * [Support Threads](https://wordpress.org/support/plugin/themify-wc-product-filter/)
 * [Active Topics](https://wordpress.org/support/plugin/themify-wc-product-filter/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/themify-wc-product-filter/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/themify-wc-product-filter/reviews/)

 * 24 replies
 * 2 participants
 * Last reply from: [themifyme](https://wordpress.org/support/users/themifyme/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/category-display-12/page/2/#post-13714793)
 * Status: not resolved