WebsiteBaker Community Forum (upd)

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: Fisherman on May 22, 2012, 10:02:02 PM

Title: Form Template Question
Post by: Fisherman on May 22, 2012, 10:02:02 PM
Howdy again!

Anybody know where this symbol might be coming from?

</tr></table></td>
</tr>
<tr><td>Â </td>
<td>


I've tried to track it down but no joy. Here's the page: http://www.xtremespeedhpc.com/contact.html

Thanks
Title: Re: Form Template Question
Post by: instantflorian on May 23, 2012, 12:30:43 PM
Options of the form section probably. (Sometimes the &nbsp; is changed to other characters depending on the choosen charset and/or the server configuration)
Title: Re: Form Template Question
Post by: jacobi22 on May 23, 2012, 12:56:52 PM
 is the utf8-char for a empty space (like &nbsp;).
Write the code in your form-template like this

</tr>
<tr><td></td>
<td>


and dont forget to save this changes

Title: Re: Form Template Question
Post by: Fisherman on May 23, 2012, 02:43:57 PM
I searched for <tr><td>&nbsp;</td> in the wb directory and deleted &nbsp; in \form\add.php and captcha_control\tool.php and it's still there. Should I look for the page in my database and edit it directly there?
Title: Re: Form Template Question
Post by: nibz on May 23, 2012, 02:47:25 PM
In your form page click on settings
And then look for the gap in the footer settings between <td></td>
Title: Re: Form Template Question
Post by: Fisherman on May 23, 2012, 03:34:16 PM
Thanks. That fixed the form. I wasn't looking for a space but the symbol so I missed it.