Viewing 15 replies - 1 through 15 (of 36 total)
  • Shailesh

    (@shaileshsavaliya)

    yes.
    where you want to change background ?

    Thread Starter loveateverybite

    (@loveateverybite)

    i would like to change the header background..the patchwork design to something of my own ..! how to?

    Shailesh

    (@shaileshsavaliya)

    in your style.css on line:1151 below style is coded.

    .style-babycakes #masthead {
        background-image: url("images/patchwork3.jpg");
        border-bottom: 10px solid #774F47;
    }

    here you can change background-image property with your own.
    You can change image as you required.

    Thread Starter loveateverybite

    (@loveateverybite)

    i’ve found that line ..what do i have to replace?

    Shailesh

    (@shaileshsavaliya)

    Are you want to set another image or want to set background color???

    Thread Starter loveateverybite

    (@loveateverybite)

    another image 🙂

    You can replace your existing code

    .style-babycakes #masthead {
        background-image: url("images/patchwork3.jpg");
        border-bottom: 10px solid #774F47;
    }

    with

    .style-babycakes #masthead {
        background-image: url("URL_TO_YOUR_NEW_BACKGROUND_IMAGE");
        border-bottom: 10px solid #774F47;
    }

    or if you want to use a solid color as background, you can replace your existing code with

    .style-babycakes #masthead {
        background-image: none;
        background-color: HEX_COLOR_CODE;
        border-bottom: 10px solid #774F47;
    }

    hii
    search /* .style-maude #masthead */ in style.css template and change background-image property with your own.

    .style-maude #masthead {
    background-image:url(images/patchwork.jpg);
    border-bottom: 10px solid #46433a;
    }

    Shailesh

    (@shaileshsavaliya)

    first paste image in your
    “wp-content/themes/patchwork/images/” directory.

    than set

    background-image: url(“images/here-your-image-name”);

    image name in this property.
    Make sure that your image name have no space…

    Thread Starter loveateverybite

    (@loveateverybite)

    i replaced it with this direct link but nothing is happening 🙁

    http://i1214.photobucket.com/albums/cc494/giuliap90/back.png

    Thread Starter loveateverybite

    (@loveateverybite)

    sorry …how do i paste my image in to “wp-content/themes/patchwork/images/” directory. ??

    Thread Starter loveateverybite

    (@loveateverybite)

    sorry …how do i paste my image in to “wp-content/themes/patchwork/images/” directory. ??

    hey save your image in ‘wp-content> theme >patchwork> images folder ‘.

    Shailesh

    (@shaileshsavaliya)

    style-babycakes #masthead {
        background: url("http://i1214.photobucket.com/albums/cc494/giuliap90/back.png") !important;
    }

    paste this at bottom of your style.css

    Thread Starter loveateverybite

    (@loveateverybite)

    sorry Shail … how can i paste my image in to “wp-content/themes/patchwork/images/” directory ?

Viewing 15 replies - 1 through 15 (of 36 total)
  • The topic ‘Possible to change the patchwork background?’ is closed to new replies.