• Resolved artisana

    (@artisana)


    Hello!
    I LOVE this theme- it is simple and beautiful.
    I am working on a site (with a Tiny Forge child theme) and I’d like to remove the entry title on the home page.
    In the past, when using the Twenty-Eleven theme I would just do:

    .home.entry-header {
    display: none;
    }

    but that doesn’t seem to work with Tiny Forge.

    Do you know how I can go about accomplishing this?
    Thanks in advance!!

    -Ana

Viewing 7 replies - 1 through 7 (of 7 total)
  • Try it using the post ID

    #post-7 .entry-header {
    display: none;
    }

    Theme Author Tomas Mackevicius

    (@tomasm)

    Hi, Artisana,

    beautiful site! Your rules didn’t work, because you missed the space between .home and .entry-header 😉

    .home .entry-header {
    display: none;
    }
    Thread Starter artisana

    (@artisana)

    Was that it?! Tomas, thank you!!
    Your theme is beyond beautiful.

    Hey Tomas,

    I’m trying to do the same thing, but I’m not sure where to put that code. Any suggestion? Thanks! Beautiful theme!

    Theme Author Tomas Mackevicius

    (@tomasm)

    You can put it at the end of the style.css file (parent or child depending which one you’re using) or in the window of custom css plugin (if you go that route).

    nicolesage

    (@nicolesage)

    Hello! Sorry to bring up and old thread but I just downloaded the theme and am in love. I was just trying to find out how to also remove the entry titles from other pages, for example the About page. I entered the below code in my child theme and this worked for the home page, but none of the others. Thank you for your help!!

    .home .entry-header {
    display: none;
    }

    I had another question, but this maybe for another thread. I would like the header image to only be on the Home page. When I go to, for example, About or Contact page I would prefer no header image so the Home page stays unique. So for any page other than home it would simply be: Logo, navigation, About or Contact (for example) content, footer.

    Thank you so so much!

    Theme Author Tomas Mackevicius

    (@tomasm)

    1. Check the source of your target page and see the BODY classes, use post ID or post/page slug class as target for CSS.

    2. target header with display: none; and bellow add css rules to target only those pages that you want with header display: block; – select classes as in 1.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove Entry Title on Home page?’ is closed to new replies.