View Single Post
  #2  
Old 02-15-2008, 08:36 PM
  kube's Avatar 
kube kube is offline
 

X-Adept
  
Join Date: Sep 2005
Location: London: a small place East of Wales
Posts: 529
 

Default Re: Dialog.tpl table in seperate TD with 100% width

hi imimin,

Not sure how to answer this as I haven't the code available to me at the moment. Try giving the <table > a 100% width (or a specified width in pixels) - this should open up the TD of 100% with some space to breathe.

Also I can see from that snippet of code that something may not also be right.

Tables should follow the form with opening and closing tags, for example...

<table> (open table)
<tr> (open table row)
<td> (open data item)
</td> (close data item)
</tr> (close table row)
</table> (close table)

You currently have </tr></td> the wrong way round at the end of your snippet (it should be </td></tr></table>)

Also you have an open <p> (paragraph) tag, it should be closed with an ending </p> tag or itself amended to <p />. In some browsers they display differently if not properly formed.

Remember to back up ;D

Hope this helps.
Regards,
Doms
__________________
Doms
kube v4.1.9
Reply With Quote