Wrong use !important in CSS Stye Sheet
-
Wrong use !important in the following, this would force the child theme to use !important as well, but if your css was loaded first, my child theme style is rendered useless.
Something like
div.style or div#style
would be better
https://stackoverflow.com/questions/11178673/how-to-override-important
Below are the line important was used
Line 1323: font-size: 100% !important; Line 1377: color: rgb(255, 255, 255) !important; Line 1378: font-size: 12px !important; Line 1380: margin: 0 auto !important; Line 1382: text-align: center !important; Line 1527: margin-left: 1.5em !important; Line 1542: color:#f8f8f8 !important; Line 1543: border-bottom:2px solid #ee4b3a !important;
Pls try and fixe them
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Wrong use !important in CSS Stye Sheet’ is closed to new replies.