• Hi there — I’m trying to remove the “Home” header from the first page of my site. I’d like to just have an image and then text. I’m new to web development and am not very familiar with CSS.

    My website is http://www.bostonwellnesscoach.com, so you can see what I mean. The theme is Photographer.

    Is there a way to easily remove the word “Home”?

    Thanks,
    Mike

Viewing 5 replies - 1 through 5 (of 5 total)
  • Tareq

    (@worthingtech)

    .headline {
    display:none;
    }

    Should do this in your child theme to save future hassle when updating and losing your edits.

    Thread Starter mikeia888

    (@mikeia888)

    Thanks so much, Tareq. That worked, but it removed the headlines from every page. I just want it removed from the first page. Is there a way to do that? No problem if not.

    Thanks!
    Mike

    Tareq

    (@worthingtech)

    You should be able to do it just for the home page if you find out the page id. In your case, the id for your home page is 177 so if you use the following it will only remove the headline for that page.

    #page-177 .headline {
    display: none;
    }

    This will sort it for you!

    Thread Starter mikeia888

    (@mikeia888)

    Thanks you so much. That worked.

    Tareq

    (@worthingtech)

    No probs!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove header from front page’ is closed to new replies.