Getting rid of old Logo on wordpress site

  • Unknown's avatar

    Hello,

    I want to get rid of my old logo on my wordpress site. I am going to be posting my wordpress blog on my website, and don’t need my old logo present. I tried to simply delete it in CSS and am left with a black box in the middle of my screen? Any pointers?

    Also, I am try to post my blog on my website which is through go daddy. They have a blog insert HTML link, but the links are showing up in orange writing. Any tips for making them black or a less obtrusive color?

    Thank you for your help!
    Amy

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

  • Unknown's avatar

    Hey,

    I would like to help solve your first question.

    The display property in CSS defines how a part of your website is displayed. Setting it to “none” will cause the element to disappear. If you want to hide/remove your logo in WordPress try adding this code to your CSS:

    div.site-branding {
        display: none;
    }

    And if you want to see your logo again, simply delete the display line. :)

    Hope this helps!

  • Unknown's avatar

    Hey,

    Oops! I need to make a slight modification to the code I provided you. Try adding this to your CSS instead:

    .site-branding {
        display: none;
    }

    Sorry about that! Let me know if you have any issues.

  • The topic ‘Getting rid of old Logo on wordpress site’ is closed to new replies.