Hi all I am currently using JQuery Mobile to create a web app. I currently have a navbar across the top of my page with a series of images centered inside each button on the navbar. I have set the "data-theme=b" but this doesnt give me the colour I want. I have tried removing this and setting the background colour using the css but I havent had much luck.
I was just wondering is it possible to change the navbar colour using just the css or some jquery.
My code for the navbar is:
<div data-role="navbar"><!-- navbar -->
<ul>
<li><a href="index.html" data-ajax="false" data-transition="flip" ><img src="../../images/icons/SearchLarge.png" height="30px;" width="30px;"></a></li>
<li><a href="../../index.html" data-ajax="false" data-theme="b"><img src="../../images/icons/ApplicationL.png" height="30px;" width="30px;"></a></li>
<li><a href="../app/index.html" data-ajax="false" data-theme="b"><img src="../../images/icons/App3.png" height="30px;" width="30px;"></a></li>
<li><a href="#" data-ajax="false" data-theme="b"><img src="../../images/icons/View.png" height="30px;" width="10px;"></a></li>
<li><a href="#" data-ajax="false" data-theme="b"><img src="../../images/icons/Last2.png" height="30px;" width="30px;"></a></li>
</ul>
</div><!-- /navbar -->