ok,
this is the code I have just tested:
.Normal #dnn_ctr396_Links_lstLinks a:link,.Normal #dnn_ctr396_Links_lstLinks a:visited, .Normal #dnn_ctr396_Links_lstLinks a:active
{
text-decoration: underline;
color: orange;
font-size: 20px;
}
.Normal #dnn_ctr396_Links_lstLinks a:hover
{
text-decoration: underline;
color: green;
}
all links in DotNetNuke are styled with the normal class, so to specify directly for the links in the links module you also need to target directly the ID of the actual module you wish to style.
- so use the web developers toolbar, go to ' information / display ID and class details'
from here you can identify the ID of the links module on your DotNetNuke installation, change the code above to match your ID, ie you should only need to change
#dnn_ctr396_Links_lstLinks
to something like
#dnn_ctr450_Links_lstLinks
to find out more information on the web developers toolbar make sure you view this tutorial:
Troubleshooting DotNetNuke Skinshope this helps,