- Status changed from New to Feedback
- Assignee set to nant
This due to the following CSS in Joomla 1.6.x backend template.
IN: administrator/templates/bluestork/css/template.css
ON: Line 841
fieldset label, fieldset span.faux-label {
clear: left;
display: block;
float: left;
margin: 5px 0;
}
The below would need to be removed or overridden.
clear: left;
display: block;
float: left;
This would fix the labels. The below is causing the inputs to float.
IN: administrator/templates/bluestork/css/template.css
ON: Line 858
fieldset input, fieldset textarea, fieldset select, fieldset img, fieldset button {
float: left;
margin: 5px 5px 5px 0;
width: auto;
}
The below would need to be removed or overridden.
float: left;
Should be handled within CBs backend CSS file if possible?