Hello!
I think at this point the best way is to find the file itself and change it manually. Just to be sure that I understand it right, you want to change that blue planet and start image? If it is right, here is what you have to do:
First step is to create a so called child theme, for which you can find a very good description here: codex.wordpress.org/Child_Themes
Basically you have to do this because if you make any changes inside the theme folder, it will be completely lost when you update the theme or WordPress, it will be lost.
So the next step is, inside your child themes folder, create a folder called images, and inside that, you have to put the header background image with the name of header-bg.png
The themes original image is 948x203px so you should use something similar. It is very important for the image to have this exact name, because child themes work so if you put something in the child themes folder (php, css files, images, etc) with the same name as it is in the parent or original theme, than wordpress will use yours, not the image from the theme. Everything else that you do not provide for WordPress, it will use from the parent theme.
I hope this helps, if you have any additional questions, feel free to post here.
Have a nice day!
Greetings,
Balint
Thank you,
My issue is resolved! Replacing the image turned out to be only one part of the problem. I also had to delete the default coloring for the header in thefollowing code:
#header{
background:url(images/header-bg.png) no-repeat #010D26;
I hope this will help anyone else with similar issues.
Thanks again,
Charlie
Hello!
I am glad that I could help you!
Have a nice day!
Balint