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
Post a Comment