Help with positioning an icon next to the navbar text
Example Code:
<ul>
<li><a href="#" id="other-color" class="ui-btn ui-shadow ui-btn-icon-left ui-custom-icon ui-arrow ui-nodisc-icon">Set Filter</a></li>
<li><a href="#" id="other-color" class="ui-btn ui-shadow ui-btn-icon-right ui-custom-icon ui-location ui-nodisc-icon">Add Page</a></li>
</ul>
CSS Styles:
.ui-arrow:after {
content: '';
background-image: url(icons/filled-filter-32.png);
background-size: 15px 15px;
}
.ui-location:after {
content: '';
background-image: url(img/plus-32.png);
background-size: 15px 20px;
}
I want the icons positioned directly next to the text without any additional spacing.