I found this related thread:
But the problem is, it center the whole <ion-content>
. What I need is just to center specific element. See the image below:
I need the loading icon to be put to center. And also I want to reuse it on other pages. Some of my pages may need two or more loading icons.
Here is some code snippet:
<ion-side-menu side="right" width="myWidthValue + 205">
<ion-content>
<div class="list">
<label class="item item-input">
<i class="icon ion-search placeholder-icon"></i>
<input type="text" placeholder="Search Products">
</label>
<div class="item">
<h1 class="ion-loading-c"></h1>
</div>
<div class="item item-body text-center">
<img class="full-image" ng-src="{{$root.g.userInfo.picture}}">
</div>
I’m not good in css, I swear.