What is FontAwesome ?
Well FontAwesome features packed icons over 605 Icons all the icons from the Twitter Bootstrap framework, and now many more and you can with customize it with the power of CSS. You can use any icon by just add a class attribute in your html element.
Get FontAwesome and Replace Older/Newer navigation With it
In cause if you can't find copy this (I was wanted to you copy lastest version)
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
And then go to your blogger account and template -> Edit HTML and click anywhere in that editor and find head> (You can use the search box) once you find head> tag paste that cs's style below head tag.After you paste style script then now search for <b:if cond='data:newerPageUrl'> and you will find two tags make sure you don't add the mobile tag, Once you found the "<b:if cond='data:newerPageUrl'> " and you will found the older / newer / home post links, We will add our fontAwesome arrow icon there
Now we will replace older / newer post link with FontAwsome icons
Replace this
<a class="***"><data:newerPageTitle/></a> -> Newer Post Link
<a class='***'><data:olderPageTitle/></a> - > Older Post Link
<a class='***'><data:homeMsg/></a> -> Home Link
With
<a class='***'><i class='fa fa-arrow-circle-left fa-5x'/></a> -> Newer Post Link
<a class='***'><i class='fa fa-arrow-circle-right fa-5x'/></a> -> Older Post Link
<a class='***'><i class='fa fa-home fa-5x'/></a>-> Home Link
Congratulations, You succesfully replaced newer / older posts
Read More About fontAwesome
Comments
Post a comment