Hi @krumz,
You can try opening the file: root/templates/ja_simpli/admin/assets/css/style.css
Look for this declaration (approx line 398):
div.tab-pane#attrib-styles .top-group {
margin-left: 0;
margin-right: 0;
width: 235px;
position: static;
top: 20px;
left: 65px;
overflow: hidden;
min-height: 400px;
}
remove the property: overflow: hidden; and add this:
div.tab-pane#attrib-styles .top-group:after {
content: "";
clear: both;
display: table;
}
I attach this file here so you can make a comparison (and a less file in case you want to change in less).