Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebug CSS strike-through

I've made an global css that I used in two page (basic search and advance search page). I use it in advance search page, and the css script is running well. But when I move to basic search page (by click a link), the css not working. I used firebug to see what happen, and then I found that the css script is strike-through. css strike-through How can I solve it,.?

like image 689
Praditha Avatar asked Dec 19 '11 10:12

Praditha


2 Answers

That basically means that your CSS property is being overriden by another CSS.

See where that property is defined, and you'll probably need to fix the order of the CSS inclusion on your web-page.

like image 128
pcalcao Avatar answered Nov 07 '22 00:11

pcalcao


If you want to override the css from here means, all you have to do is set !important to your css.

like input.range{ width:73px !important}

Hope it will help you.

like image 33
Jak Avatar answered Nov 06 '22 22:11

Jak