hi, thanks so much for answering my last ask. i wanted help changing the link icons. On my blog they're the ones titled home, resources, wcif, faq & ask, downloads and, stories, they currently have a chain icon. I hope this helps.
ooh, ok. these links are using pseudo-classes to show those icons.
find .sidebar-menu a::before{ and delete content:'\e882';. now is the most complex part, because you have to set a icon to each link, separately.
let's use .sidebar-menu a:nth-of-type(number)::before{content:'/xxxx')}. copy and paste it above /* search */ as many times as you need.
number represents the number of your link, and /xxxx is the code of the icon you are going to use. change number to 1, 2, 3 (like, home is the first link so you will put 1, stories is the sixth and you put 6). and to change the icon, acess this page, copy the code of the icon you want to use and replace /xxxx with this.








