Viewing 6 replies - 1 through 6 (of 6 total)
  • You got nothing to do with this code. You gotta edit either .logo_ph or #logo or .logo values in styles.css to rectify this.

    Thread Starter adamkpetersen

    (@adamkpetersen)

    Okay I see this in style.css:

    /*==============================================//
    // HEADER
    //==============================================*/
    
    #logo {
    width: 162px;
    padding: 30px;
    display: block;
    }
    
    #logo img {
    max-width: 162px;
    margin: 0 auto;
    }
    
    #logo.logo_ph {
    background-image: url(images/logo-light.png);
    background-repeat: no-repeat;
    background-position: center center;
    height: 73px;
    }

    But when I edit and save it, it doesn’t change my page. I have already set the permissions to 777 as well.

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Can you give us a link to the site?

    Also, did you try changing background-image in #logo.logo_ph to none?

    background-image: none;

    I’m guessing since I can’t Firebug your site to make sure, but the above looks logical.

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    I found the site. This will get rid of the background (I noticed you’ve stretched the white area across the top now). I’ve also included getting rid of the box shadow.

    #logo {
    background: none !important;
    box-shadow: none !important;
    }

    Thread Starter adamkpetersen

    (@adamkpetersen)

    Thank you!

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    You are welcome.

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

The topic ‘Help with Custom CSS?’ is closed to new replies.