Hey there adiazudin,
Hope you’re well! π
I suggest you use a child theme http://codex.wordpress.org/Child_Themes or use css custom plugin like this: https://wordpress.org/plugins/simple-custom-css/ if you will customize your theme.
Add the code in your child theme’s style.css or using the plugin mentioned above.
#header {
background-repeat: repeat;
}
It will repeat both x(horizontal) and y(vertical).
Let me know if it helps! π
Best Regards,
Calvin
How to insert an image / pattern?
Hi adiazudin,
To add an image to the header, you will first need to upload that image to your WordPress install.
Then you will need to open the image in a new window or use “Copy image URL” im your browser, in order to get the full path to the image.
It should be something like:
http://yoursite.com/wp-content/uploads/2015/02/image.png
The update the code Calvin provided, so it will look something like this:
#header {
background-image: url("http://yoursite.com/wp-content/uploads/2015/02/image.png");
background-repeat: repeat;
}
Thanks,
Ivan
Hi,
Is it possible to update the header background image without updating the code? I am new to WordPress and looking for an easy way to do this. Also, how do I update the background image?
Thanks
Arti
Hi artiasharma. Please start a new topic here: https://wordpress.org/support/theme/hueman#postform. You can reference this thread if it’s related. Thank you.
Hi Ivan,
I had tried those codes, but not implemented in my website.
Hey there adiazudin,
Working with Ivan and Calvin here π
Did you upload the image to your media library? Also where did you add the code?
Please make sure that you clear browser cache before checking for changes. If this doesn’t help could you please post link to your site so I can take a look? Make sure to have the above code added.
Best regards,
Bojan
My problem is solve now. The code is like this:
#header {
background: url(.../Header-Background-CNY2015.png);
}
Everyone can see what I want on my site.
Glad you managed to find a solution for that π
Best regards,
Bojan
Thank you everyone here for a good discussion.
any one tell me how can i re size the header of this theme …
i want to re size the height of header of this theme …
Hey there Grooggy,
Hope you’re well! π
I suggest you start a new topic regarding your issue because you are not allowed to ask your issue on another member’s thread as you can see on this forum rules http://codex.wordpress.org/Forum_Welcome#Where_To_Post
Cheers!
Calvin