How can I add another icon for the li list?
now how can i add my own img for the UI list (navigation bar)? I am trying to add my own / imgs icon for each ul
my current code:
<li><a href="#deliver"> <i class="fa fa-car"></i> אזורי חלוקה</a></li>
<a href="#"><img src="images/United-States-Flag-24.png" alt="US ENG" title="US English" /></a>
<li><a href="#contactus"> <i class="fa fa-envelope-o"></i> צור קשר</a></li>
<li><a href="#shop"><i class="fa fa-shopping-cart"></i> חנות</a></li>
+3
source to share
1 answer
Here's an example from the awesome font page: http://fortawesome.github.io/Font-Awesome/examples/ at first your code above doesn't contain a ul tag, not sure if you forgot it or didn't include it.
the use of tags is <i>
correct, but perhaps you haven't included the font in your title?
try this example and see if icons appear. I can edit this base on your feedback
<ul class="fa-ul">
<li><i class="fa-li fa fa-check-square"></i>List icons</li>
<li><i class="fa-li fa fa-check-square"></i>can be used</li>
<li><i class="fa-li fa fa-spinner fa-spin"></i>as bullets</li>
<li><i class="fa-li fa fa-square"></i>in lists</li>
</ul>
+1
source to share