Good day to all. I have a css problem with ck editor dialog box.

The main ideea is kind of like this I have a div with position relative and set width (40px) and a input with width:100%. The problem is that instead of 40px with on input its width is 100px.

As you can see in the last image the input appears to be unfinished. If I forgot to specify something ask pls.

I can't figure it why so here are some prints with the structure (sorry for quality... just zoom 2 times and the text is quite readable): enter image description here

enter image description here

enter image description here

link|improve this question

5  
Is there any chance you could post a link to a page? Your description, complete with images, is quite good but this looks like the type of problem where most people would find it easier to hack away with a tool like Firebug. – thirtydot Jan 24 '11 at 14:45
Unfortunately the site is hosted on a virtual machine. So I can't provide you with a link to a working copy. The print screens are from firebug as you can see... and for the rest of encapsulating elements... all have position relative and width 100% table has display:block... I. No other properties (except of course font-size, color, etc... witch are not exactly relevant to this problem). – zozo Jan 24 '11 at 15:14
1  
If you really can't upload a test case, then you could upload a .zip containing the relevant parts of the site. It's not great, but it might help your question get answered. – thirtydot Jan 24 '11 at 15:27
I would have to upload the whole site (zend+smarty+ckeditor) to work (because the window with the problem is dynamically generated)... and unfortunately I can't (trust me I understand the need for a working copy and I would ask the same thing if I were you). – zozo Jan 24 '11 at 15:33
Well, the first thing I would try is adding some margin and padding to every element in sight, to see if it made the right edge visible. – thirtydot Jan 24 '11 at 15:37
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

Try to explicitely give the input a width of 40px, not just to its parent element. Also give it a display: block;

.cka_dialog_ui_input_text input {
  display: block;/* fixes some errors */
  width: 36px;/* 40 - 2x2px border*/
  padding: 0;/* just for testing*/
}
link|improve this answer
Ok... it works like this. Everything looks fine tough I was prefering not to style the input itself. There are some ramifications but... I try to work around them if no other ideas can be found. – zozo Jan 24 '11 at 16:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.