Actions
Bug #2021
closedtab display type set to div causes tab content to extend out of tab
Bug #2021:
tab display type set to div causes tab content to extend out of tab
Description
When using the profile tab display type of DIV the contents of the tabs extend outside of the tab it self. The following is the proposed culprit as divs without a display style are already the correct width (large as they can go). Forcing width of 100% will cause it to extend outside of the tabs content.
IN: components/com_comprofiler/plugin/templates/default/template.css
ON: Line 103
form.cb_form, .cb_tab_content {
border-width: 0;
margin: 0;
padding: 0;
width: 100%;
}
Removing width: 100%; appears to resolve the issue, but may affect table usage.
Files
Actions