Removing Blog Name from Cutline

  • Hi

    Anyone know the CSS code to remove the blog title from the Cutline theme?

    The blog I need help with is: (visible only to logged in users)

  • Add display:none; to #masthead h1

  • Yay! thanks!

    Don’t suppose you know how I get rid of that smiley over the right hand side do you? been bugging me ever since I built the blog!

  • The smiley is Angie and is there for as part of blog stats. It can be hidden by adding this to your CSS

    img.wp-smiley {
    background:inherit;
    color:inherit;
    }
  • Hey thanks very much, I’ll give that a go tomorrow.

  • Hmmmm. That didn’t work.

    img.wp-smiley {
    background:inherit;
    color:inherit;
    }

    Can you see anything different there? I can’t. Does it have to go in any specific place?

  • Did you paste the entire stylesheet into the edit window, or did you use the “add to existing…” and only put in what you have changed?

    If you are using the entire stylesheet with the “replace existing…” then search for img.wp-smiley and then insert the background and color declarations there. You might have to do like on the original and add the !important to the declarations also.

  • I opened “view the original stylesheet”, Dreamweaver was the app that opened it. I then found the img.wp-smiley line and added the declarations, so that line now looks like this

    .entry img.wp-smiley {
    background:inherit;
    color:inherit;
    border:none!important;
    float:none!important;
    clear:none!important;
    margin:0!important;
    padding:0!important;
    }

    I then copy the entire stylesheet, went back into WP, replaced the stylesheet with the one I have just altered (having also altered h1 to remove the title as well) and then ticked “start from scratch and just use this” option and hit “Save Stylesheet”.

  • You can try adding display: none; to it, but according to staff in another thread, that can supposedly effect stats collection. I know a number of people have used display none and have never complained that their stats stopped working.

    Give it a try and see what happens.

  • The topic ‘Removing Blog Name from Cutline’ is closed to new replies.