changing header image and style

Hello,

01
I would like to have a different header image for each internal page.
How can I?

02
And how can I change fonts, colors, etc?

My website is:

Thank you

Hello @rossob,

Being a free Lite theme, you cannot find this options inside the theme.

Custom work or coding knowledge is required for this kind of changes.

Have a great day!

But is there a way to upgrade this theme?
How can I buy the complete version?

Hello @rossob,

There is no PRO version for Illdy and at the current moment we are not planning to launch one.

I can offer you, though, custom work services.

Let me know if you are interested in that.

Regards

Where in the code would I have to go to edit this kind of stuff?
Thanks

Hello @savraha1,

All the code can be found in your FTP server inside the illdy theme folder.

If you have some specific questions on things you want to modify please let me know them and I’ll do my best to guide you around.

Regards

Thanks
Where in the code can I set different text for each page’s header (in the top header)? Right now, each page uses the same header (the one inputted in Site Identity). Is there a way I can just add a line of code into my child theme? If so, what’s the code to edit each specific page’s header text?

Hello @savraha1,

You can also find the bottom header content inside the theme folder on your server > wp-content > themes > illdy > sections > blog-bottom-header.php

There you need to change this row that deals with the site title:

<h2><?php echo esc_html( get_bloginfo( ‘name’ ) ); ?><span class=”span-dot”><?php _e( ‘.’, ‘illdy’ ); ?></span></h2>

This one with the site description:

<p><?php echo esc_html( get_bloginfo( ‘description’ ) ); ?></p>

Regards