How To put colors into the domain address

How To put colors into the domain address.i mean change it To any color like wpbeginner is doing using orange color on their domain address. How could be done?

Hi @Borislav,

Thanks for reaching out.

Are you referring to this https://www.wpbeginner.com/wp-tutorials/how-to-change-the-color-of-address-bar-in-mobile-browser-to-match-your-wordpress-site/? If ye, you can simply add this code to child theme’s functions.php along with your preferred color

add_action('wp_head', 'mobile_address_bar_color', 9999999);

function mobile_address_bar_color { ?>

<meta name="theme-color" content="#ff6600" />

<?php }

Else, I’m not sure it’s possible and it’s not theme-specific.

Thanks!

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