• Hi,

    I am using the “manufacturer” WordPress Theme and it has been extremely challenging to get rid of the Title and title area across the site. I have toggled the hide title button in Elementor. I have added the CSS Code

    .page .page-title {

    display: none;

    }

    to additional CSS. None of these has worked. Please help me.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Try this:

    .man_over {
        display: none;
    }
    
    .man_intro_cont h1 {
        display: none;
    }

    You are using a commercial theme with Manufacturer. I would ask you to contact their support: https://themeforest.net/item/manufacturer-factory-industrial-business-wordpress-theme/22672753/support – questions about commercial products are not allowed here in the forum.

    Thread Starter Ugochi

    (@teshuva)

    Okay. Thanks for the info.

    csmuhammadshahid123

    (@csmuhammadshahid123)

    1. Check your theme settings: Some themes have built-in options to hide the page title or title area. Check your theme settings to see if this is the case. Look for an option like “Hide Page Title” or “Title Area” in the theme settings.
    2. Use a plugin: There are several WordPress plugins available that can help you remove the page title or title area. One popular plugin is “Disable Title.” Simply install and activate the plugin, and it will allow you to hide the page title or title area on any page or post.
    3. Use CSS: If your theme doesn’t have built-in options or if the plugin doesn’t work, you can try using CSS to hide the page title or title area. Here is an example of CSS code you can use:

    .page .page-title {
    display: none;
    }

    This code should hide the page title on all pages using the “manufacturer” theme. Make sure you are adding the code to the correct location – it should be added to the Additional CSS section of the WordPress Customizer, which you can access by going to Appearance > Customize > Additional CSS.

    I hope one of these solutions works for you! Let me know if you have any further questions

    Same issue with my client website

    website url https://dubaimoverspicker.com/

    Please go to Appearance->Customize->Additional CSS then put that code

    .man_over{
      display: none;
    }

    If not work then put that one please

    .man_over{
      display: none !important;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Difficulty removing Title and Title Area’ is closed to new replies.