Hey there,
Found out that the visual-editor core.css prevents the iframe-body background fully covering all the available content.
This is no problem with the default themes, but if you change the website styling to anything that have a dark background with light-colored font, the visual-editor content is invisible after scrolling down the content.
The problem lies in the core.css styling of the visual-editor ([https://compositec1.codeplex.com/SourceControl/latest#CompositeC1/Website/Frontend/Config/VisualEditor/Styles/core.css](https://compositec1.codeplex.com/SourceControl/latest#CompositeC1/Website/Frontend/Config/VisualEditor/Styles/core.css), line 13:
```
html,
body {
margin: 0;
padding: 0;
border: none;
background-color: #FFF;
height: 100%; /* <-- here is the problem */
box-sizing: border-box;
}
```
after manually commenting out the 'height: 100%', the IFrame was able to fill the background completely (and not only the currently visible height of the viewport).
Could this be fixed in a future C1 release?
Note: this is __not__ a C1 V4.2 issue, was already there with V4.1.
If you need any more info, please just contact me.
Best regards,
Chris
Comments: ** Comment from web user: DaveGordon **
Found out that the visual-editor core.css prevents the iframe-body background fully covering all the available content.
This is no problem with the default themes, but if you change the website styling to anything that have a dark background with light-colored font, the visual-editor content is invisible after scrolling down the content.
The problem lies in the core.css styling of the visual-editor ([https://compositec1.codeplex.com/SourceControl/latest#CompositeC1/Website/Frontend/Config/VisualEditor/Styles/core.css](https://compositec1.codeplex.com/SourceControl/latest#CompositeC1/Website/Frontend/Config/VisualEditor/Styles/core.css), line 13:
```
html,
body {
margin: 0;
padding: 0;
border: none;
background-color: #FFF;
height: 100%; /* <-- here is the problem */
box-sizing: border-box;
}
```
after manually commenting out the 'height: 100%', the IFrame was able to fill the background completely (and not only the currently visible height of the viewport).
Could this be fixed in a future C1 release?
Note: this is __not__ a C1 V4.2 issue, was already there with V4.1.
If you need any more info, please just contact me.
Best regards,
Chris
Comments: ** Comment from web user: DaveGordon **
Have you tried height: Auto ?