Reputation: 393
I have span of glyphicon
Here is code
<span class="glyphicon glyphicon-calendar blue" style="color: #1d69b4;background:transparent;border:none;"></span>
On my local machine I have it blue color
But on server I have this
Why so and how I can make it same color like on local server?
Upvotes: 1
Views: 422
Reputation: 5203
Another css is overwriting your style do it this way:
<span class="glyphicon glyphicon-calendar blue" style="color: #1d69b4 !important;background:transparent;border:none;"></span>
Upvotes: 0
Reputation: 611
Happens with me many times, after deleting caches and cookies it works fine. you can try it. or try it on different browser/system.
Upvotes: 1