Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
417 views
in Q2A Core by

It is quite a new feature that now we can color the address bar of mobile browsers to that of our website's main color. I think it would also look good in Q2A and it is fairly easy to use.

Basically I want to ask other members that what they think about this new feature and would they like to color address bar when their website is opened in mobile browsers.

by
Seems to me that has a very narrow 'market' i.e. only a small percentage of users will see it.
by
Well see to this link of Stackoverflow, which shows how we can color chrome bars for all phones... now that is definitely not a small market... ;)
http://stackoverflow.com/a/33193739

1 Answer

+1 vote
by

 

Simply go to - admin/layout 

Check the option - Custom HTML in <head> section of every page:

Paste the below lines of code (Source - http://stackoverflow.com/a/33193739/1691300 

<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#4285f4">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#4285f4">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#4285f4">

( PS -: This should work but I have not tested this , please make sure you test it before you got to production )

...