Yes, the trick is getting the Anchor tag. Because of CSS Specicifty the anchors (links) in DNN need to be over-ridden specifically. The class on those objects is called "SkinObject", so to target them when they are a link you would use: .SkinObject a { color:red; } And to get the pseudo-classes you would do it like this: .SkinObject a:hover { color:green; } Note also that the order that you define pseudo classes matters when you are working with anchors. |