paolo samore
Forum Replies Created
-
AuthorPosts
-
I documented it on fontawesome. So if I integrate it into wordpress, do you solve the problem?
I take the guide I found:
Integrating Awesome Fonts into WordPress
To integrate Awesome Fonts into WordPress we have basically two options:
use a local copy by uploading the set on our server
use an external copy by adding the link to the resource
To use it locally, let’s start downloading the set to this address.
Decompress the package, copy the css and fonts folders and paste them into the root of our template, at this point there is only to make it available to WordPress the most appropriate, by entering this code in the file function.php1
2
3
4
function add_font_awesome () {
wp_enqueue_style (‘font-awesome’, get_stylesheet_directory_uri (). ‘/css/font-awesome.css’);
}
add_action (‘wp_enqueue_scripts’, ‘add_font_awesome’);In the second case, we use the external resource, so the function in the file function.php will point to the required CDN, you can get the link to the most up-to-date version of this link
1
2
3
4
function add_font_awesome () {
wp_enqueue_style (‘font-awesome’, ‘https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css’);
}
add_action (‘wp_enqueue_scripts’, ‘add_font_awesome’);I use Crome in the photos you see.
Thank you.The problem is that as you can see from the photos if the browser is increased in% of display, text and image (tel, address, etc.) overlap. Even customized text under PROFILE is poorly printed. Why do these things happen by viewing the mobile site?
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private. -
AuthorPosts