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
[solved] weird behaviour tinymce: cannot see left side of content
-
- Forum Members
- Posts: 59
- Joined: Thu Jan 17, 2008 10:26 am
[solved] weird behaviour tinymce: cannot see left side of content
Last edited by crosmuller on Wed Nov 10, 2010 8:34 am, edited 1 time in total.
Re: weird behaviour tinymce: cannot see left side of content
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...
-
- Forum Members
- Posts: 59
- Joined: Thu Jan 17, 2008 10:26 am
Re: weird behaviour tinymce: cannot see left side of content
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
Most likely it's in the page content itself, and the fact you have the print floating left when you don't need to...
-
- Forum Members
- Posts: 59
- Joined: Thu Jan 17, 2008 10:26 am
[Re: weird behaviour tinymce: cannot see left side of content
I found the solution, the error was in a stylesheet:
Code: Select all
html>body{
position:absolute;
width:700px;
left:50%;
margin-left:-350px;
}