Jprood - sorry about that man! had a long day of work today, and got an even longer night ahead of me, but tonight atleast i got my good old buddy agentpress with me… ok for the hover class check out this block of CSS - since the images are on the homepage and subsequently link to the their respective posts, the block of CSS you gotta insert it in is in the hyperlink section which is the second "category" of CSS, check out mine;
Code:
/************************************************
* Hyperlinks *
************************************************/
a, a:visited {
color: #9C0000;
text-decoration: underline;
}
a:hover {
color: #9C0000;
text-decoration: none;
}
a img {
border: 1px solid black;
padding: 3px;
}
a img:hover {
border: 3px solid #ADADAD;
padding: 1px;
}
a:focus, a:hover, a:active {
outline: none;
}
The class of CSS for the hover is obviously the class " a img:hover " - but to have a striking difference between the image prior to hovering, make sure you mess around with the padding(s) of the " a img " and " a img:hover "… check it out and let me if you got any questions and show me how it comes out too