header

Hi Movin

Thank for your great theme I like it!

My concern today is about how to display a picture between my logo and social media icon.

Ideally:
on Desktop: there would be my logo on the left and then my picture in the middle and to the right of it social Icon.( i don’t want to lose the social icons though)

how can I do it.

Thanks

hfrank

Hi @hfrank,

I hope you are well today and thank you for your question.

To achieve this you have to develop child theme of Travelify theme or just develop a small WordPress plugin and change the following theme function travelify_headerdetails using the travelify_header action hook.

add_action( 'travelify_header', 'travelify_headerdetails', 10 );
/**
 * Shows Header Part Content
 *
 * Shows the site logo, title, description, searchbar, social icons etc.
 */
function travelify_headerdetails() {
....
}

Best Regards,
Movin