Unfortunately, the CSS code generated by RSD fails in FireFox. On FireFox, the content does not have a top and bottom margin. I wanted to attach a screenshot of this along with a screenshot of what it should look like but the forum wouldn't let me upload the images even though they were both PNG files.
This problem is a known bug in FireFox https://bugzilla.mozilla.org/show_bug.cgi?id=307866 but because it has been known for so long without being fixed, it's unlikely that it will be fixed in the near future. The problem is that FireFox does not correctly handle the height of objects that have a display type set to Table-*.
For RSD, the workaround is to modify main.css.
Here's the before and after CSS code:
Before:
display: table;
min-height: 550px;
background-color: #d18221;
}
After:
display: table;
height:550px;
min-height: 550px;
background-color: #d18221;
}
The only change is to add a height property before the min-height property. This works on all browsers I've tried it on. Note that the change should only be applied to elements that have a display type of "table" (or any variant, such as "table-cell").
Curtis