Page 1 of 1

adding icon to menu item

Posted: Sun Aug 27, 2017 4:27 pm
by bca
Hi
Is there a easy way of adding a FA icon to the end of a menu button to indicate there are more levels?
for example a downangle

b

Re: adding icon to menu item

Posted: Sun Aug 27, 2017 4:37 pm
by frase

Code: Select all

li.docs a::after, li.sdocs a::after, li.sdocs span::after {
	content: " \f078";
	font-family: "FontAwesome";
}

Re: adding icon to menu item

Posted: Sun Aug 27, 2017 5:19 pm
by bca
Thanks Frase
That works OK.
I was close but hadnt declared the font family and missed the span

B