Use inline SVG instead of font-awesome webfont in pure CSS - html
I am using a bulma-based template for a static site generator and I'm looking to remove any dependencies on Javascript and any resources hosted by third parties, as well as generally minimizing things.
The template utilizes font awesome for some of the icons involved, but it's really only around 5-10 icons total, so I was planning to inline them as SVGs rather than load an entire web font. However, I'm not sure how to get as close as possible to a drop-in replacement for these few icons through pure CSS.
Here is a minimal working example of the HTML:
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<ul style="list-style: none">
<li>
<a href="https://example.com">
<span style="align-items:center; justify-content:center"><i class="fa fa-globe fa-fw"></i></span>
<span>Example</span>
</a>
</li>
<li style="font-size: 20px">
<a href="https://example.com">
<span style="align-items:center; justify-content:center"><i class="fa fa-globe fa-fw"></i></span>
<span class="link-text">Example</span>
</a>
</li>
<li style="font-size: 40px">
<a href="https://example.com">
<span style="align-items:center; justify-content:center"><i class="fa fa-globe fa-fw"></i></span>
<span class="link-text">Example</span>
</a>
</li>
</ul>
If I use this with the fontawesome CSS (see this JSfiddle) by prepending this:
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
I get an icon that scales with the font size, has the same color as the font size and is centered vertically with respect to the text. If, however, I use an inline SVG (see this JSFiddle), with this CSS:
.fa-globe::before {
content: '';
display: inline-block;
height: 1em;
width: 1em;
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJNMzY0LjIxNSAxOTJoMTMxLjQzYzUuNDM5IDIwLjQxOSA4LjM1NCA0MS44NjggOC4zNTQgNjRzLTIuOTE1IDQzLjU4MS04LjM1NCA2NGgtMTMxLjQzYzUuMTU0LTQzLjA0OSA0LjkzOS04Ni43NDYgMC0xMjh6TTE4NS4yMTQgMzUyYzEwLjY3OCA1My42OCAzMy4xNzMgMTEyLjUxNCA3MC4xMjUgMTUxLjk5Mi4yMjEuMDAxLjQ0LjAwOC42NjEuMDA4cy40NC0uMDA4LjY2MS0uMDA4YzM3LjAxMi0zOS41NDMgNTkuNDY3LTk4LjQxNCA3MC4xMjUtMTUxLjk5MkgxODUuMjE0em0xNzQuMTMtMTkyaDEyNS4zODVDNDUyLjgwMiA4NC4wMjQgMzg0LjEyOCAyNy4zMDUgMzAwLjk1IDEyLjA3NWMzMC4yMzggNDMuMTIgNDguODIxIDk2LjMzMiA1OC4zOTQgMTQ3LjkyNXptLTI3LjM1IDMySDE4MC4wMDZjLTUuMzM5IDQxLjkxNC01LjM0NSA4Ni4wMzcgMCAxMjhoMTUxLjk4OWM1LjMzOS00MS45MTUgNS4zNDUtODYuMDM3LS4wMDEtMTI4ek0xNTIuNjU2IDM1MkgyNy4yNzFjMzEuOTI2IDc1Ljk3NiAxMDAuNiAxMzIuNjk1IDE4My43NzggMTQ3LjkyNS0zMC4yNDYtNDMuMTM2LTQ4LjgyMy05Ni4zNS01OC4zOTMtMTQ3LjkyNXptMjA2LjY4OCAwYy05LjU3NSA1MS42MDUtMjguMTYzIDEwNC44MTQtNTguMzk0IDE0Ny45MjUgODMuMTc4LTE1LjIzIDE1MS44NTItNzEuOTQ5IDE4My43NzgtMTQ3LjkyNUgzNTkuMzQ0em0tMzIuNTU4LTE5MmMtMTAuNjc4LTUzLjY4LTMzLjE3NC0xMTIuNTE0LTcwLjEyNS0xNTEuOTkyLS4yMjEgMC0uNDQtLjAwOC0uNjYxLS4wMDhzLS40NC4wMDgtLjY2MS4wMDhDMjE4LjMyNyA0Ny41NTEgMTk1Ljg3MiAxMDYuNDIyIDE4NS4yMTQgMTYwaDE0MS41NzJ6TTE2LjM1NSAxOTJDMTAuOTE1IDIxMi40MTkgOCAyMzMuODY4IDggMjU2czIuOTE1IDQzLjU4MSA4LjM1NSA2NGgxMzEuNDNjLTQuOTM5LTQxLjI1NC01LjE1NC04NC45NTEgMC0xMjhIMTYuMzU1em0xMzYuMzAxLTMyYzkuNTc1LTUxLjYwMiAyOC4xNjEtMTA0LjgxIDU4LjM5NC0xNDcuOTI1QzEyNy44NzIgMjcuMzA1IDU5LjE5OCA4NC4wMjQgMjcuMjcxIDE2MGgxMjUuMzg1eiIvPjwvc3ZnPg==");
}
The icon is not centered vertically with respect to the text, and it is not the same color as the text. What is the best way to treat inline SVGs as replacements for font awesome glyphs without javascript? (I'm less concerned with the "icons are the wrong color" than the fact that they don't seem to be aligned well with the text, I just mention it because if there is an approach that solves both problems, I'd prefer that).
Perhaps this resource could be useful for you. IcoMoon has a decent selection of free icons, including the social networks, and if you click 'generate svg' you can then select 'get code' and copy/paste the html and css straight into your site.
To change icon color and layout you can simply change the css you just grabbed.
Something like:
`
.icon {
display: flex;
align-items: center;
color: #whatever-text-color;
}
`
Here is a JS-free example that you can play with. If you are using a sass variable for controlling font-size, you could also hook the image up to that to keep everything scaling together.
The only catch with using SVG over using font-awesome is a lack of svg support on old/ancient IE browsers. Everything else is a solid win - less http requests, less file size, less dependencies.
Hope this helps :)
EDIT
extra tip. For animations with inline svg, put a class or id onto the PATH tag and animate that. For rotations you might also need: transform-origin: center; since it defaults to rotating around the top-right.
If you have an svg with multiple paths, you can animate them individually and start getting really funky.
In your fiddle https://jsfiddle.net/ks392fzv/6/, if you set content to content to content: "\00a0\00a0" in the .fa-globe::before class, it will give the i content and that element can now align by the baseline.
.fa-globe::before {
content: '\00a0\00a0';
...
I forked your fiddle and made the small change here: https://jsfiddle.net/ndebellas/y4dLcqkx/.
Related
Is there a way to edit the edges or borders of fontawesome icons?
I am currently a student learning HTML and CSS. I was tasked with an assignment to replicate a single webpage. However, I am having difficulties getting the icons to look like what is shown in the model provided to replicate. The images below show what the icon area of the model should look like versus what I have, and also what the original icons looked like when just added to the HTML before color or size adjustments were made. Original icon area of the model provided. How close I have gotten to it Original icons before size and color adjustments were made I need to get the edges to be sharp and the white areas above and below the icons to be removed. I tried setting the border-radius, margin, and padding to 0px or 0% and nothing still works. I also tried using text-shadow. My HTML code for the icon area is '<div class="icons"> <i class="fab fa-twitter-square"></i> <i class="fab fa-facebook-square"></i> <i class="fab fa-dribbble-square"></i> <i class="fab fa-tumblr-square"></i> <i class="fas fa-rss-square"></i> </div>' And CSS 'i{ display: inline-flexbox; font-size: 24px; color: #3E5A99; background-color: #E5EEFF; margin-bottom: 50px; }' I am asking for some advice on how to get this done, please. Thank you in advance.
The short answer is no, you cannot edit the FontAwesome webfont icons without downloading, editing, and reuploading the individual svgs. I would use the background-less versions of these icons and then put them each inside a div. Then you can set the div border-radius, background-color, etc. to exactly what you need. A couple of pointers with this process: Use display: grid; for each container div, that way you can also add place-items: center; to super-center each icon inside of it's div.
Span Overlay Element Bad Position
On my website (http://milesopedia.com) I have this overlay on the image but the icon is not correctly aligned, as you can see here: It's a Wordpress-based blog with a theme and if I look at the preview of the theme (http://themes.tielabs.com/sahifa/category/world/) the element is correctly positioned: I have compared the html and css and they seem identical to me. The markup uses a span with a pseudo before element to render the icon. I can't find the source of the problem. Here's the code: <div class="post-thumbnail"> <a href="http://milesopedia.com/conseils/ou-partir/partir-a-nouvelle-orleans-points-miles" rel="bookmark"> <img width="310" height="165" src="http://i1.wp.com/milesopedia.com/wp-content/uploads/2016/05/Canal_Streetcar_in_New_Orleans_Louisiana_USA.jpg?resize=310%2C165" class="attachment-tie-medium size-tie-medium wp-post-image" alt="Photo: Didier Moïse"> <span class="fa overlay-icon"></span> </a> </div>
Set display: inline; for that <span> element.
Override this rule inherited from font-awesome.css: .fa { transform: translate(0, 0); } I've just tried to disable it in inspector and icon got centered as you expect. UPD: Or, as per #jacob answer, there is a cleaner approach just setting display: inline for your icon span element.
Positioning disparity between chrome and firefox
I searched and wasn't able to find anything related to this. It's a very specific and strange difference between chrome and firefox. If anyone can find the place in the code that's causing it, I would be VERY grateful. I can't post screenshots, but if you view the jsfiddle in both browsers you'll see what I'm referencing. Here's my code http://jsfiddle.net/JSDesign/aJagN/ And a small sample: <li> <a href="#"> <span class="ca-icon"><i class="icon-home"></i></span> <div class="ca-content"> <h2 class="ca-text">Home</h2> </div> </a> </li> CSS is on the jsfiddle. Also, I'm using Font Awesome if that matters. http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css Thanks a lot!
There was definitely a difference between Chrome/FF. This was occurring because browsers have different default properties. I reset the CSS in the example and then tweaked the CSS accordingly, changing the relative positioning and the margins. Here is an updated example that works the same across browsers. Updated/Modified properties: .ca-menu li a { margin-top:14px; } .ca-content { position: relative; top: 36%; }
Can I change the color of Font Awesome's cog icon?
I have to wrap my icon within an <a> tag for some reason. Is there any possible way to change the color of a font-awesome icon to black? or is it impossible as long as it wrapped within an <a> tag? Font awesome is supposed to be font not image, right? <i class="icon-cog"></i> Edit profile
This worked for me: .icon-cog { color: black; } For versions of Font Awesome above 4.7.0, it looks this: .fa-cog { color: black; }
HTML: <i class="icon-cog blackiconcolor"> css : .blackiconcolor {color:black;} you can also add extra class to the button icon...
You can specify the color in the style attribute: <i class="icon-cog" style="color:black"></i> Edit profile
Try this: <i class="icon-cog text-red"> <i class="icon-cog text-blue"> <i class="icon-cog text-yellow">
To change the font awesome icons color for your entire project use this in your css .fa { color : red; }
If you don't want to alter the CSS file, this is what works for me. In HTML, add style with color: <i class="fa fa-cog" style="color:#fff;"></i>
Is there any possible way to change the color of a font-awesome icon to black? Yes, there is. See the snipped bellow <!-- Assuming that you don't have, this needs to be in your HTML file (usually the header) --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <!-- Here is what you need to use --> Edit Profile Font awesome is supposed to be font not image, right? Yes, it is a font. Therefore, you are able to scale it to any size without losing quality.
To hit only cog-icons in that kind of button, you can give the button a class, and set the color for the icon only when inside the button. HTML: <a class="my-nice-button" href="/users/edit"> <i class="icon-cog"></i> Edit profile </a> CSS: .my-nice-button>i { color: black; } This will make any icon that is a direct descendant of your button black.
With reference to #ClarkeyBoy answer, below code works fine, if using latest version of Font-Awesome icons or if you using fa classes .fa.icon-white { color: white; } And, then add icon-white to existing class
For me the only thing that worked is inline css + overriding <i class="fas fa-ellipsis-v fa-2x" style="color:red !important"></i>
just give and text style whatever you want like :D HTML: <a href="javascript:;" class="fa fa-trash" style="color:#d9534f;"> <span style="color:black;">Text Name</span> </a>
.fa-search{ color:#fff; } you write that code in css and it would change the color to white or any color you want, you specify it
You can change the Font Awesome's icon color with the bootstrap class use text-color example text-white
Sometimes changing the colour in the external css file doesn't work. You can add inline css property in the icon tag and that will work. For example <i class="fa-solid fa-keyboard" style="color: grey;"></i>
just give it the style whatever you want like style="color: white;font-size: 20px;"
You can change the color of a fontawesome icon by changing its foreground color using the css color property. The following are examples: <i class="fa fa-cog" style="color:white"> This supports svgs also <style> .fa-cog{ color:white; } </style> <style> .parent svg, .parent i{ color:white } </style> <div class="parent"> <i class="fa fa-cog" style="color:white"> </div>
Write this code in the same line, this change the icon color: <li class="fa fa-id-card-o" style="color:white" aria-hidden="true">
Use color property to change the color of your target element as follow : .icon-cog { // selector of your element color: black; } Or in the newest version of font-awesome , you can choose among filled or not filled icons
If you want to change the color of a specific icon, you can use something like this: .fa-stop { color:red; }
It might a little bit tricky to change the color of font-awesome icons. The simpler method is to add your own class name inside the font-awesome defined classes like this: . And target your custom_defined__class_name in your CSS to change the color to whatever you like.
Open the svg file in vs code or something change the line path fill="gray" to what ever color you want! in my case i change it to gray!
I added a style, then color of your choice and make sure to make it bold
HTML: <i class="icon-cog blackiconcolor"> css : .blackiconcolor {color:black;} Using class will give you a free binding property which you can apply on any tag you require.
div inside anchor
This doesn't happen all the time. A bug is not a bug if cannot be reproduced! First, I thought this was a mistake of my young programming skills but same error appears in my two sites, apparently under the same circumstances. <a style="display:block;" href="link"> <div>text1</div> <div>text2</div> </a> Sometimes, while browsing, links with divs inside them render strangely, duplicate elements appear on the page with no reason, text gets distributed between different links, a real mess. Real screenshots: http://cupacupelor.ro/img/help.jpg http://www.carbroker.ro/img/help.jpg Anyone faced this problem? Is there a solution? I'm not interested of fixes involving JavaScript!
I guess your divs in links cause inconsistency in some browsers (may be your css playing here). "Semantics", valid markup are some buzz words. So why would you want DIVs in an <A> tag. You can try someting like this <a href="#"> <span class="divstyle">Text 1</span> <span class="divstyle">Text 2</span> </a> then in CSS .divstyle { display: block; //and other styles etc }
Check your page in a HTML validator. I'm 90% sure that you can't have a <div> element inside inline elements like <a>. Even though you've set the link to display:block, it's still not allowed and the browsers may be spitting their dummy. What you can do is use spans instead, setting them to block: <style type="text/css"> .link, .link span { display: block; } </style> <a class="link" href="example.com"> <span>text1</span> <span>text2</span> </a>