Remove sidebar widget title

I want to remove the title of the sidebar menu widget. It has no purpose. See attached photo

Hello @ppe29,

Thanks for asking. :slight_smile:

Please add following CSS under X > Theme Options > CSS:

.x-sidebar .h-widget {
    display: none;
}

If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.

I recommend you to watch following video that will help you to get started with CSS.

https://www.youtube.com/watch?v=MFR4WXiLzpc

Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.

https://developers.google.com/web/tools/chrome-devtools/css/

https://developers.google.com/web/tools/chrome-devtools/

https://www.youtube.com/watch?v=tP_kXBJWPhQ&t=200s

Thanks.

I’m sorry but that didn’t work. As you can seem the code has been inserted. See here: http://pumphoists.com/p10000/

Hi again,

Please replace the previous code with the following one:

.widget_nav_menu .h-widget {
    display: none !important;
}

Also make sure to purge the cache after adding the code so you can see the change on the front-end right away as I see the content on your site is being served by the cache.

Hope this helps!

This worked in combination with the transient purge. Thanks

Glad we could help.

Cheers!

What do I need to mark out the title on this page? I guess the other code I entered doesn’t apply to this since it’s not a nav menu like the other one and is instead just plain text in a widget?

www.pumphoists.com/contact

Hello @ppe29,

Thanks for updating the thread.:slight_smile:

Upon checking the page it looks like you have disabled Contact Form 7 plugin as I can only see the shortcode. Please reactivate the plugin and let us know.

Thanks.

I apologize. It’s www.pumphoists.com/contact-us

Hello @ppe29,

Thanks for updating the thread.

Please add following CSS under X > Theme Options > CSS:

.page-id-23 #text-2 .h-widget {
    display: none !important;
}

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.