The search box below the social icons

How do I add Search button below social media in header?
You can make a step by step tutorial for this problem because I am a beginner?
Thank You!

Someone help me??? :frowning:

I tried to write here
but nothing that appeared, where I wrong??? :((

Help me please!

Have all gone in holiday? … Because do not see any answer! … I wait 7 days and nothing! … :(((

I solved the problem!
Disable all plug-ins and write in to Child Theme functions.php this file

add_action( 'travelify_header', 'my_custom_search' , 5 );

function my_custom_search() {
	get_search_form();
}

then write in Theme Options - Other - Custom CSS (Advanced) this

.searchform {
    height: 30px;
    z-index: 100;
    float: right;
    margin-top: 85px;
    margin-right: 27px;
    margin-left: -165px;
}

#branding input.s {
    border: 1px solid #D0D0D0;
    width: 120px;
    text-indent: 10px;
    padding-left: 10px;
}

and everything works.

I do not know why, the code not works when you paste directly in style.css !?! :expressionless:

Hi @drillbell,

Awesome great to see you got that solved.

I do not know why, the code not works when you paste directly in style.css !?!

I have just tested it on my test site by using your shared code and fond it’s working fine without any issue.

This can be due to the issue in your child theme, to confirm it you can just temporary use the Travelify theme and add the code in it.

Best Regards,
Movin