Change the color of the browser in google chrome

What i Should do in order to change the native color of my google chrome browser with my color brand
i have seen some codes like that one but i am not quite sure where i should put it and if this code is correct for the x theme
<meta name=“theme-color” content="#db5945">

Hi There,

Please add the following code under functions.php file locates in your child theme:

add_action( 'wp_head', 'x_insert_header_scripts' );
function x_insert_header_scripts(){
	?>
	<meta name="theme-color" content="#db5945">
	<?php
}

Hope it helps :slight_smile:

1 Like

how can I create a child theme please? or it s created by default?

Hi Borislav,

You need to download the child theme. Install on your wp-content/themes

Activate it.

Please refer to:

https://theme.co/apex/child-themes

Thank you

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.