I am trying to change my layout to add link_to to the drop down list.
previous code:
%li.divider
%li
%a{:href => "#"}
%i.fa.fa-user-profile
Add new user
i edited as follows:
%li.divider
%li
= link_to '<i class="fa fa-user-profile"></i> Add new user'.html_safe, new_user_path
And everything looks fine, but fa-user-profile is 0px x 0px and it is invisible. What have I done wrong?
HTML output:
source
share