Hello again, I am messing with links, i want only the article link to have a style without affecting all the other links i tried with custom css
/* unvisited link */
a:link {
color: #22a2dc;
}
/* visited link */
a:visited {
color: #22a2dc;
}
/* mouse over link */
a:hover {
color: #767676;
}
/* selected link */
a:active {
color: #767676;
}
But it affect all other links how to I style only the one insider an article?
Also how wouldI style a widget?
Thanks