How can I override bootstrap custom styles | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I override bootstrap custom styles

That's how do I make changes on the custom state in other to create my own style please reply fast if you know please.

10th May 2017, 10:35 PM
Cele Prince
Cele Prince - avatar
4 Answers
+ 2
well I must confess I'm hearing about the so called !important in html for the first time. your explanation is vague @visph@ illuminate better
14th May 2017, 3:53 PM
Xperience
Xperience - avatar
+ 4
The '!important" special keyword is used to bypass all priorities of css rules, and get the higher one ( between each important marked rules, the common priority rules continue to be applied ^^ ). You must use it with parsimony, as it breaks the cascading concept, and so introduce hardness for maintening the code :P Consequently, as inlined css rules ( in 'style' attribute of a html tag ) get by default the most highest priority, if you need to add '!important' to your inlined rule, it's signify that there's some '!important' already set to non-inlined style. Anyway, you must prefer use inlined style to make some test, and then migrate the rules into non-inlined one: you have to place them after your framework/template style, so change will override previous set, since the selector used for define the rule has an equal or greater priotity... That's can be trivial, and require to good study the declaration of the rules you are using in the template/framework to properly override them ( sometimes, mostly often, it's quite simple and enough to just keep the same selector and define a new propery/value pair ). And so, better to use '!importat' keyword only if really unavoidable ^^
11th May 2017, 12:36 AM
visph
visph - avatar
+ 1
If you need to use !important too much... is that it might you don't know how CSS works: - prevalence of selectors to form a rule - order of rules (Cascading). The most specific at bottom position is which is applied
19th Mar 2021, 1:09 AM
David Ordás
David Ordás - avatar
0
something like this, {font-size : 100% !important; } add !important to your css code like that.... hope I'm making sense?
10th May 2017, 11:31 PM
Folorunso Tolulope