If you want to style all images in your portal you can use:
a img {
border:0;
}
- that will remove all borders, or to style them you could use:
#dnn_contentpane a:link img {
border: 2px solid orange;
}
#dnn_contentpane a:visited img {
border: 2px solid red;
}
#dnn_contentpane a:hover img {
border: 2px solid pink;
}
- on here we are targeting any images placed in the contentpane
If you use the web developer toolbar you can identify the ids of the elements on the page and target your CSS as above.
A tutorial to get you started with this is:
Troubleshooting DotNetNuke SkinsThanks,