Hello,
Looking at the IDs on your page, I found the id for your search results using the web developer toolbar. The results display ok in Firefox, but IE8 has the problem you mention.
I couldn't test it in IE on your live site, but try the code below
#dnn_ctr349_SearchResults_dgResults a:link
{
overflow: hidden;
}
otherwise you could try forcing it to a width:
#dnn_ctr349_SearchResults_dgResults a:link
{
overflow: hidden;
width: 50px;
}
If you would like info on the web developer toolbar check out:
Troubleshooting DotNetNuke SkinsThanks,