• Resolved lukebyrne64

    (@lukebyrne64)


    I’m trying to get rid of the grey part of my site along with the title “home”. I’ve spent hours trying to get rid of this with no luck.. any ideas?

    • This topic was modified 4 years, 10 months ago by Jan Dembowski.
    • This topic was modified 4 years, 10 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @lukebyrne64,
    In your theme, there should be a setting to remove the section you described. Alternatively you can add the following code to your .css file.

    .hero {
        display: none!important;   
    }

    But be careful, if you add this rule every “Hero” element you add will not be visible. Just out of curiosity, what theme are you using?
    Let me know if this solution can work.

    Andrea Veglia

    Thread Starter lukebyrne64

    (@lukebyrne64)

    Thank you @andrea0veglia that worked! I’m using the ‘Mins’ theme.

    While you are here would you possibly know how to make the menu text bold? I’ve tried to do this and succeeded until it came to making the “book appointment” text both bold and blue

    To add bold to a text, you can always use Css. For the menu, enter the following rule in the .css file:

    #menu-header li a {
        font-weight: bold;
    }

    If it doesn’t work, add “! Important;” after “bold”:

    #menu-header li a {
        font-weight: bold!important;
    }

    Andrea Veglia

    Thread Starter lukebyrne64

    (@lukebyrne64)

    @andrea0veglia Thank you so much! the first one worked 🙂

    I’m happy to have been helpful. 🙂 If the problem is solved, remember to set the ticket status as “Resolved“. Regards,
    Andrea Veglia

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove header image but not menu’ is closed to new replies.