Steve, I don't think you know how genius you are!?!?! Do you know how many different people have looked at this and on how many forums?? It's been out there for weeks and no one had a clue what was causing it, then, along comes Steve and it's solved in 2 seconds.
I should have asked you ages ago but Steve, thank you thank you thank you.... GENIUS!!!
I had tried something similar with the additional_images.php file. I had tried removing the forced width like this but it wasn't helping:
PHP Code:
// List Box array generation:
$list_box_contents[$row][$col] = array('params' => 'class="additionalImages centeredContent back"' . ' ' . ' ' . '' . '',
'text' => "\n " . $link);
But to actually specify the width like you did is just the ticket:
PHP Code:
List Box array generation:
$list_box_contents[$row][$col] = array('params' => 'class="additionalImages centeredContent back"' . ' ' . 'style="width:135px;"', 'text' => "\n " . $link);
The thing is, I'd been using the ZC 1.3.8a stock file, so surely I'm not the only one with a ZC store who's additional images overlap in Opera??