nshah
nshah

Reputation: 597

Align Image Center Jquery Mobile

I have a panel in jquery mobile which looks like this:

enter image description here

I want the logo to be centered, however the following code is not working:

HTML

<div class="panel-content">
    <img src="images/logo.png" class="logopanel" width="15%" length="15%" align="center">
    <ul data-role="listview">
    </ul>
</div>

Upvotes: 1

Views: 5937

Answers (1)

Chad
Chad

Reputation: 490

Set .panel-content to text-align: center;

Upvotes: 5

Related Questions