Hello
I am editing my product description page, so that the description is nicely tucked inside a table with round corners.
I know how to do that, the problem is I can't get the border images to show on the page... even when I set a wrong image, it still doesnt show anything.
Here is the code:
As you can see I tried 4 different ways, all to the same result - nothing appears.Code:<!--bof Product description --> <?php if ($products_description != '') { ?> <!--table border--> <table border="0" width="200" cellpadding="0" cellspacing="0"> <tr bgcolor="#f6be26"> <td width="15"><img scr="../images/topleft.gif" width="15" height="15"></td> <td width="170"> </td> <td width="15"><img scr="includes/templates/custom/images/topright.gif" width="15" height="15"></td> </tr> <tr bgcolor="#f6be26"> <td width="15"> </td> <td width="170" bgcolor="#ffffff" align="center"> <!--end table border--> <div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div> <!--end table border--> </td> <td width="15"> </td> </tr> <tr bgcolor="#f6be26"> <td width="15"><img scr="../images/nonExistentFile.gif" width="15" height="15"></td> <td width="170"> </td> <td width="15"><img scr="includes/templates/custom/images/nonExistentFile.gif" width="15" height="15"></tr> </table> <!--table border--> <?php } ?> <!--eof Product description -->
I am using firefox webdeveloper plugin but it didnt help much.
Any ideas?
Thanks!



