I am trying to add an image to the title of my jQuery Mobile based webpage. I need the image to be right-aligned and using CSS for this purpose. But the results are not satisfactory. There is a large gap between the image and the edge, and it also does not match the title text. Here is the header code:
<header data-role='header'><h1>My App<img src="my_logo.png" alt="Low resolution logo"class="align-right"/></h1></header>
and here is the css code for line alignment:
.align-right { float:right; margin-right: 5px; }
jquery-mobile
user1107888
source share