mark_spencer
mark_spencer

Reputation: 393

Cannot change color of glyphicon

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

Screen1

But on server I have this

Screen2

Why so and how I can make it same color like on local server?

Upvotes: 1

Views: 422

Answers (2)

Marco Salerno
Marco Salerno

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

Upendra Joshi
Upendra Joshi

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

Related Questions