hey @johno69, I think in my test-setup I forget the css..
I did just test it with this CSS:
.name_directory_name_box {
margin-bottom: 10px;
cursor: pointer;
}
[role="definition"] {
margin-top: 5px;
padding: 5px;
background-color: #f0f0f0;
border-left: 3px solid #007BFF;
}
.name_directory_name_box hr {
margin-top: 10px;
margin-bottom: 10px;
}
and this JS:
jQuery(document).ready(function() {
jQuery('.name_directory_name_box [role="definition"]').slideUp(1);
jQuery('.name_directory_name_box [role="term"]').click(function() {
var parentBox = jQuery(this).closest('.name_directory_name_box');
parentBox.toggleClass('active');
parentBox.find('[role="definition"]').slideToggle(200);
});
});
I assure you we are going to fix it haha ??