Hi
I have below code. I am using this class in many Pages. I want backgound to be green .
Where i should make changes so that it has effect on all Pages
General
Thanks
1 Reply
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Naimish MakwanaPosted Sep 4, 2024, 9:45 AM
To make the background green for all elements using the
card-headerclass, you should update your CSS. You can add or modify the CSS rule for thecard-headerclass to include a green background. Here’s how you can do it:Add this CSS rule to your main stylesheet, which is included in all your pages. This will ensure that the background color change is applied universally.
If you have a specific stylesheet for your project, you can add the rule there. If you’re using inline styles or a CSS framework, make sure this rule is not overridden by other styles.
Thanks