php - Using font awesome in wordpress theme -


i have installed theme flat-responsive , has font awesome css inside. see in functions.php

wp_enqueue_style( 'flat_responsive_font-awesome', get_template_directory_uri() . '/css/font-awesome.min.css', array( ), current_time( 'mysql' ), 'all' ); 

but couldn't use it, example <i class="fa fa-camera-retro fa-lg"></i> fa-lg showing nothing. want custom css using font awe icon, how can do?

you need change css of class

i {   font-family: 'fontawesome';   src: url('font/fontawesome-webfont.eot?v=4.3.0');   src: url('font/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),   url('font/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),   url('font/fontawesome-webfont.woff?v=4.3.0') format('woff'),   url('font/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),   url('font/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); } 

upload font family theme , font awesome css class use e.g. <i class="fa fa-camera-retro fa-lg"></i> fa-lg


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -