I am using fontello.css
in my web site. It works fine on my computer and in all browsers, no problem at all. But when I upload it to server it is not working properly.
The fontello.css
is located in:Styles/css/fontello/css/fontello.css
.
here is my code:
<link href="Styles/css/fontello/css/fontello.css" rel="stylesheet" />
<p class="scrolldown">
<a class="smoothscroll" href=""><i class="icon-down-circle"></i></a>
</p>
Relative path can cause problems on some servers while it's working on localhost without a problem. Try using full path,not relative. If the css file is located in
http://www.example.com/Styles/css/fontello/css/fontello.css
use<link href="http://www.example.com/Styles/css/fontello/css/fontello.css" rel="stylesheet" />
as path. In that way your css will be correct on any page