*

omilias

  • ***
  • 33 posts
Need Help With Font-Awesome icon
« on: January 01, 2017, 01:45:47 AM »
Hi,

I want to change the gear icon on the right top page of my site near the login section. I found the css codes and try to change them
but no luck, did not see any changes even after i cleared the cache. Can you help?


Can you also explain how i can do the same (add awesome icons) for my categories and subcategories.
For categories and subcategories could not find css codes to change.

---------------------------------------------------------------------------------------------------------------------------------------------
style.css

!#gear-right, #conf-form {display:none!important;}

NO CHANGE

--------------------------------------------------------------------------------------------------------------------------------------------
font-awesome.css

}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

CHANGE IT TO:

}
.fa-gears:before,
.fa-user-circle:before {
  content: "\f085";
}
----------------------------------------------------------------------------------------------------------------------------------------------
font-awesome.min.css

.fa-gear:before,.fa-cog:before{content:"\f013"}

CHANGE IT TO:

.fa-gear:before,.fa-user-circle:before{content:"\f013"}

-----------------------------------------------------------------------------------------------------------------------------------------------

Thanks.

*

MB Themes

Re: Need Help With Font-Awesome icon
« Reply #1 on: January 01, 2017, 01:53:47 AM »
@omilias
You should change class of <i> element, not it's content via CSS.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

omilias

  • ***
  • 33 posts
Re: Need Help With Font-Awesome icon
« Reply #2 on: January 01, 2017, 03:40:28 PM »
@frosticek

Hi there,

Thanks for clarification, managed to change the gear icon.