Hello, Is it possible to customize the patchwork background ?
My website is..http://loveateverybite.com/
Hello, Is it possible to customize the patchwork background ?
My website is..http://loveateverybite.com/
yes.
where you want to change background ?
i would like to change the header background..the patchwork design to something of my own ..! how to?
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.
i've found that line ..what do i have to replace?
Are you want to set another image or want to set background color???
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;
}
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...
i replaced it with this direct link but nothing is happening :(
http://i1214.photobucket.com/albums/cc494/giuliap90/back.png
sorry ...how do i paste my image in to "wp-content/themes/patchwork/images/" directory. ??
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 '.
style-babycakes #masthead {
background: url("http://i1214.photobucket.com/albums/cc494/giuliap90/back.png") !important;
}
paste this at bottom of your style.css
sorry Shail ... how can i paste my image in to "wp-content/themes/patchwork/images/" directory ?
you can download image from http://i1214.photobucket.com/albums/cc494/giuliap90/back.png on your local computer and just copy and paste in your dir.
sorry i'm still struggling to understand ..i have the image on my desktop...how do i copy it into directory?
Are you working on live project or on localhost...?
i'm not sure what that means ..
And if you find out your style.css than images dir is in the same dir as style.css dir so open images dir and paste your image.
style-babycakes #masthead {
background: url("http://i1214.photobucket.com/albums/cc494/giuliap90/back.png") !important;
}
you can directly use this. No required to paste image.
@loveateverybite
Firstly copy your image from the desktop. And open your theme folder, goes into patchwork folder, open images folder and paste the image in images folder.
.style-maude #masthead {
background-image:url(images/image.jpg);
border-bottom: 10px solid #46433a;
}@Shail i've tried ...its not working ...
@arti singh .. where is the theme folder?
sorry guys you are talking with some1 with no experience!
where you upload the files of your theme on your server.
@arti singh - what folder?
Here is the simple way. You can use the image even if you don't put it into "images" folder.
Do this:
Download the image on your computer from http://i1214.photobucket.com/albums/cc494/giuliap90/back.png
Now login to WordPress admin
Go to Media Library >> Add New
Upload your downloaded image here.
After the image is uploaded to your site, you will see a URL for the uploaded image.
Copy that URL
Edit the style.css file
and replace your old code with :
background-image : url("YOUR_FILE_URL_HERE") !important;}
if you don't see any changes on the site. Try clearing the browser cache.
i actually did manage to put it into the image folder .. and reinstalled the theme ...but nothing was woriking :) i'll try it your way!
ah! you don't need to re-install the theme.
That will over-write the changes you make to the default code.
Now that you have uploaded the theme, login to WP admin
Go to Appearance >> Editor >> Style.css
and then follow the instructions from my last message for uploading the image and getting the URL.
Well, I just had a look at the theme and you don't need to do all this CSS stuff.
It supports custom background.
Here, is the easiest way :
Login to WP admin
Go to appearance >> background
Upload your new background image and "save"
That's it!
You must log in to post.