Zip PackageTar Package
How would I go about getting text darker? For example, I have some text: <h2 class="fancy">Contact Information</h2> I want to make the text darker. How would I go about this? Thanks! WBR
<h2 class="fancy">Contact Information</h2>
If you want to make all h2's with class="fancy" text darker, then do something like this in your style.css: h2.fancy { color: black; }
h2.fancy { color: black; }
Thanks!
If you want to make all h2's with class="fancy" text darker, then do something like this in your style.css:
h2.fancy {
color: black;
}
Thanks!