How to force a style in CSS in Service PortalIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Description To bring more weight to a CSS property, it is suggested to use '!important'. In CSS, the !important means that “this is important”. In normal use, a rule defined in an external style sheet is overruled by a style defined in the head of the document, this is overruled by an inline style within the element itself. Procedure For example, let's take the following styles were contained in a style sheet. The paragraph text would be rendered in blue, even though the first style of property applied is red. This is because the “blue” value is listed second. Since CSS is read top-to-bottom, the last style is “blue” and it gets applied to the paragraph. p { color: red; } p { color: blue; } To make the paragraph force to text always red, change the style as follows: p { color: red !important; } p { color: blue; } Defining a rule with the !important attribute that discards by overriding the normal style. Other examples: color: lightgreen !important; size: 12ex !important; text-align:justify !important; background-color: darkgreen !important; Applicable Versions All