Problem with Photoshop/IR sliced templates, Need urgent help!
Don't know where this belongs to, here or coders paradise.
I am making templates and slice them in photoshop and Imageready. Maybe mt question sound dumb but I really need help. There is a need to add an iframe but whenever in whatever template (sliced with Ps/ir) i try everything gets messed.
See this piece of HTML(the original):
Code:
<tr>
<td colspan="3" rowspan="2">
<img src="images/Index_22.png" width="42" height="9" alt=""></td>
<td width="456" height="451" colspan="12" valign="top" background="images/Center_Block_BG.gif" rowspan="13"><LINK REL="StyleSheet" HREF="style.css" TYPE="text/css">
<body background="images/ScanLine.PNG">
<?php include ("Blocks/Block.News.php");
echo $news; ?></td>
<td colspan="4">
<img src="images/Index_24.png" width="157" height="7" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="7" alt=""></td>
</tr>
When I try to add this everything gets messed(edited ver of above):
Code:
<tr>
<td colspan="3" rowspan="2">
<img src="images/Index_22.png" width="42" height="9" alt=""></td>
<td width="456" height="451" colspan="12" valign="top" background="images/Center_Block_BG.gif" rowspan="13"><iframe></td>
<td colspan="4">
<img src="images/Index_24.png" width="157" height="7" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="7" alt=""></td>
</tr>
I know I am doing something wrong related to the HTML crap, the iframe with TDs,TRs,etc...
Can someone correct it so the template won't get messed (if possible).
Thanks.