formating issue

3 posts by 2 authors in: Forums > CMS Builder
Last Post: November 5, 2008   (RSS)

By vyskocil - November 5, 2008

I just installed CMS builder. Works fine with one exception. Whenever I have an empty paragraph the character [font "Times New Roman"]Â shows up on the webpage. Tried a copy/paste from a word document and same result. Seems like where ever the html code shows a <p> </p> is where the character shows up on the webpage. Also the character appears in a paragraph where there are two consecutive spaces.

[font "Times New Roman"]I need to get this resolved before I can turn this over to the client.

Thanks

Re: [vyskocil] formating issue

By Dave - November 5, 2008

HI vyskocil,

Sounds like a charset issue. CMS Builder stores it's content in utf8. Try adding this to the head of your html page:

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />

And if that doesn't work add this to the very top:

<?php header('Content-type: text/html; charset=utf-8'); ?>

Let me know if that fixes it for you.
Dave Edis - Senior Developer
interactivetools.com

Re: [Dave] formating issue

By vyskocil - November 5, 2008

Thanks Dave ! That did the trick. [cool]