We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to add color to headers like this
/* Header*/ h1, h2, h3, h4 { color: #9bc4fe; font-weight: bold; }
but the color of H2 could not be changed:
The text was updated successfully, but these errors were encountered:
@CodingXCat You can use !important tag to override previous color
!important
/* Header*/ h1, h2, h3, h4 { color: #9bc4fe !important; font-weight: bold; }
update: adding !important tag to h1 causes also page name styles to be changes
h1
Sorry, something went wrong.
No branches or pull requests
I'm trying to add color to headers like this
but the color of H2 could not be changed:
The text was updated successfully, but these errors were encountered: