Posted by onionweb on January 24, 2006 at 10:03pm
Jump to:
| Project: | Htmlarea |
| Version: | 4.6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | closed (won't fix) |
Issue Summary
when you view source in firefox 1.5, the source content displays below the editor instead of inside it.
This doesn't happen with xinha stand-alone, only the drupal version, and is independent of the theme you use:
http://xinha.gogo.co.nz/xinha-nightly/examples/full_example.html for a correctly working version.
Comments
#1
I have tested this on drupal 4.6 and on cvs and it works fine with Firefox 1.5
Xinha is starting correctly, so ofter it crashes check the js console in firefox and it will show you the problem.
Also try upgrading Xinha to the latest version.
#2
If you delete drupal.css, the problem goes away. So it's not xinha, it's definitely a drupal issue. I'll try to narrow it down to which line in drupal.css is causing the problem.
#3
This is actually a theme issue, There was something out this before with one of the themes, so check the issues that have been fixed.
Also try and do this with bluemarine, and it should work.
#4
If I delete every stylesheet in my theme, the problem still occurs.
If I delete drupal.css, the problem goes away.
I think that means the problem is in drupal.css.
#5
in drupal.css the line
.node-form textarea {
display: block;
width: 95%;
}
breaks view source for firefox 1.5 on windows.
remove display:block and it's fixed
#6
thank you.
This one really annoyed me.
#7
You can manually add
.node-form textarea {display: inline;
}
to your theme.