Lots of people talking about phpBay sites around here lately. If you use the "column" view in the latest version of phpBay, you might find the following code snippet helpful. This should make the entire table cell displaying an aution item clickable (even better in my opinion than just the image/title). The idea is that there is a color change when the cursor enters the region - that should signify an event change, but it doesn't as it's currently coded - unless you keep moving to the clickable links (title or title/image) w/in the cell. This snippet makes the whole cell clickable via javascript. If your visitor has a script blocker, then the image and title become links and there is no.
Copy and paste over everything in the template.column.results.html file (might want to save the orig - but you have it in the zip folder if you have to retrieve it).
I tested it last night and today and it appears to be working just fine. Then again, I'm a straight up n00b and this may be all wet.
Copy and paste over everything in the template.column.results.html file (might want to save the orig - but you have it in the zip folder if you have to retrieve it).
HTML:
<td width="300" align="center" style="word-wrap: break-word;border: 1px solid #eeeeee;font-size:12px;" bgcolor="#ffffff" onmouseover="this.style.cursor='pointer'; this.style.cursor='hand'; style.backgroundColor='%%hover%%';"onmouseout="style.backgroundColor='#ffffff';" onClick="window.open('%%link_url%%');">
<noscript> <a href="%%link_url%%" target="_blank" rel="nofollow"></noscript>
<img src="%%image%%" alt="%%alt_title%%" border="0" /><br />
<strong>%%title%%</strong><br /><noscript></a></noscript>
%%paypal%% %%currency%%%%price_or_bin%%
</div> </td>