• I’m replicating my wordpress.com blog on ww.wp.xz.cn and the template I’m using (“SUITS”) apparently isn’t coded the same – I’m having an issue making my header background solid black.

    http://honeyspidermovie.wordpress.com/film-synopsis (header is perfect)
    http://www.honeyspidermovie.com/film-synopsis (can’t make the header background solid black)

    I can’t get the background on the second blog link to be solid black – it makes it transparent when I add a header image and it won’t let me add a header image that’s really long. I’m not sure if it’s a php or css coding issue (I can make small changes, but I really don’t know how to code either one).

Viewing 6 replies - 1 through 6 (of 6 total)
  • It’s in your css. Change this:

    .site-header {
    background: url(http://www.honeyspidermovie.com/wp-content/uploads/2014/02/copy-honeyspider_header.jpg) no-repeat scroll top;
    }

    to this:

    .site-header {
    background: url(http://www.honeyspidermovie.com/wp-content/uploads/2014/02/copy-honeyspider_header.jpg) no-repeat scroll top #000;
    }

    You should be creating a child theme to put any of your edits in. This way you will not lose your changes when you update the theme.

    Thread Starter myershousenc

    (@myershousenc)

    WordPress only lets you view part of the coding. What do I change in this coding…..

    /* =Site Header
    ———————————————– */

    .site-header {
    background-color: #000;
    }

    .site-header .home-link {
    display: block;
    margin: 0 auto;
    max-width: 960px;
    min-height: 180px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    }

    .site-title {
    color: #fff;
    font-family: Lato, sans-serif;
    font-size: 80px;
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: 5px;
    line-height: 1;
    margin: 0;
    padding: 40px 0 5px;
    padding: 4rem 0 0.5rem;
    text-transform: uppercase;
    }

    .site-description {
    color: #666;
    font: normal 14px “Lucida Grande”, “Lucida Sans Unicode”, “Lucida Sans”, Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 23px;
    padding-bottom: 2.3rem;
    }

    Change this:

    .site-header {
    background-color: #000;
    }

    to this:

    .site-header {
    background: url(http://www.honeyspidermovie.com/wp-content/uploads/2014/02/copy-honeyspider_header.jpg) no-repeat scroll top #000 !important;
    }
    Thread Starter myershousenc

    (@myershousenc)

    PERFECT! Thank you so much man – I’ve been trying to figure this out ALL DAY. 🙂

    No problem. 🙂

    @graphical_force what is the url part? I uploaded my image from my computer.. Im trying to get the background to black as well!
    Help!!! haha

    Thanks in advance!

    blogs: moving from graciamaria.com to graciamariastudio.com

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

The topic ‘Changing background in Header ("SUITS" Theme)’ is closed to new replies.