• Resolved johnnyrauchen

    (@johnnyrauchen)


    Hi all,

    I switched to twentytwelve and I kinda like it.
    I created a child theme and now I want to remove the border or is it a shadow around the header image.
    Can’t find the right code ??

    This is what I got sofar:

    [ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]

    .header-image 	{
    		border:none;
    		background: none;
    		}

    But there is still a light border around the image.

    The next thing is…I have a static Homepage and activated the Front-Page-Template.

    But the site-title “Home” still shows up.
    Not like in the example from wordpress: https://en.blog.wordpress.com/2012/08/28/new-theme-twenty-twelve/

    Any help will be appreciated !

    Cheers !

    link to my homepage: https://cafe2ride.de

Viewing 8 replies - 1 through 8 (of 8 total)
  • Try adding this to the above CSS that you have already:

    box-shadow: none !important;

    To remove “home”, you can hide it with CSS:

    .entry-title {
       display: none;
    }

    Thread Starter johnnyrauchen

    (@johnnyrauchen)

    Hey WPyogi,

    the

    box-shadow: none !important;

    works like a charm. Thanks !

    But if I don’t display the .entry-title it does hide the “Home” but it also does hide every other title from all blog posts.
    I would love only to hide the pagetitle on the Frontpage.

    -Sven

    Okay, see if adding the class for the home page works:

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

    Thread Starter johnnyrauchen

    (@johnnyrauchen)

    It works perfect ! Thank you !

    Fantastic, this is exactly what I am looking for.

    Thanks a bunch, WPyogi for solving my front-page title problem.

    I am still working my way in building my site.

    Having real trouble getting this to work on my localhost setup, any ideas why. I have my front page set to show a static page and I’d like to remove the entry title from that page/post only. Tried the above code with no luck. I also tried using the actual post’s class as follows:

    .post-4 .entry-title {
       display: none; !important
    }

    I’m using Twenty Twelve.Any advice welcomed and no links available as it’s local.

    Many thanks
    `

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I’m sure you’ll receive help, TerryMitchell, but through your own thread.

    I thought this was relevant here as it was the same problem and I used the same code?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘twentytwelve: frontpage & header’ is closed to new replies.