Hi...
I'm beginning to learn my way around this CSS, and I know a little information can be dangerous. :-)
I want to have only the links I add in a post to be a certain color, and be underlined. Not all the links, such as those in the widgets and the dates, categories, tags, etc, for each post. Only a link I add.
Which meant that:
<br />
a {<br />
text-decoration: underline;<br />
color: #244fb0;<br />
}<br />
didn't work for me, since it changed everything.
I created this class rule and added it:
<br />
a.blue {<br />
color:#244fb0!important;<br />
text-decoration:underline;<br />
}<br />
and in a post, I add class="blue" in the html < a > tag. It works! (Which is very exciting, in terms of the learning part.)
But... before I get too attached to this, will it cause problems later on (other than needing to remember to add the class="blue") or is there a better way?
Thank you!
The blog I need help with is sensuousinkspiller.com.