Page 1 of 1

[solved] weird behaviour tinymce: cannot see left side of content

Posted: Mon Nov 08, 2010 2:56 pm
by crosmuller
Hi forum,

I use CMSMS 1.8.2. I have a strange problem with tinymce. I cannot see the left side of the content fields and when I click in the field I see 8 white squares that I can select with the mouse to resize the field. But that doesn't work. I installed CMSMS several times but I've never seen this............. what did I do wrong?

If I disable tinymce there's no probem.

Thanks

Re: weird behaviour tinymce: cannot see left side of content

Posted: Mon Nov 08, 2010 7:35 pm
by Dr.CSS
It almost sounds like you have tables on that side, a better description of how you got to this point would help a lot in getting to a solution...

Re: weird behaviour tinymce: cannot see left side of content

Posted: Tue Nov 09, 2010 6:25 am
by crosmuller
Thanks dr css, you pointed me in the right direction. I Created a new clean template and when I use that one the problem dissapeared. So it must be something in my template! I'm not sure what it is though..........

Code: Select all

{process_pagedata}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>{sitename} - {title}</title>
{metadata}
{cms_stylesheet}
</head>
</__body>

<div id="main">

<div id="top">
<br/>
<img src="images/logobreed.jpg" alt="logo">
{menu  template='cssmenu.tpl'}
</div>

<div id="hidemenuborder">f</div>

<div id="content">
  	
<div id="tekstblok">
<h2>{title}</h2>
{content}
</div>
<div id="footer"></div>

</div><!-- end main div-->

<__body>
</__html>

Re: weird behaviour tinymce: cannot see left side of content

Posted: Tue Nov 09, 2010 8:16 am
by Dr.CSS
Most likely it's in the page content itself, and the fact you have the print floating left when you don't need to...

[Re: weird behaviour tinymce: cannot see left side of content

Posted: Wed Nov 10, 2010 8:33 am
by crosmuller
I found the solution, the error was in a stylesheet:

Code: Select all

html>body{
	position:absolute;
	width:700px;
	left:50%;
	margin-left:-350px;
}