heems
March 10, 2015, 4:07pm
1
In the following list example below, is there a way to align the item-note with the input above it? Right now, the note appears right justified before the chevron.
<div class="list list-inset">
<label class="item item-input">
<span class="input-label">Address</span>
<input type="text" placeholder="Current Location">
</label>
<a class="item item-icon-right" href="#/tab/category">
Category
<span class="item-note">{{selectedCategoryNames}}</span>
<i class="icon ion-chevron-right"></i>
</a>
</div>
Could you put a screenshot?
Sorry I have been very busy a lot these days.
Change your markup as follows:
<div class="list list-inset">
<label class="item item-input">
<span class="input-label">Address</span>
<input type="text" placeholder="Current Location">
</label>
<a class="item item-input item-icon-right" href="#/tab/category">
<span class="input-label">Category</span>
<span class="item-note">{{selectedCategoryNames}}</span>
<i class="icon ion-chevron-right"></i>
</a>
</div>
heems
April 6, 2015, 9:32pm
5
Thank you. That did the trick.
This puts the item-note in the middle not aligned to the right (next to the button) any solutions?