(2024-09-17, 12:47 PM)SELLECK87 Wrote: Perhaps I have explained myself wrongly. I meant some kind of spoiler in the user info in the postbit. I have seen that some people use bootstrap but if I activate it in my forum all the tables change.
you mean you want be able hid/show info with a button in postbit?
if yes you can add button with css you want or a div element , then with Jquery on click toggle display elements status.
for example :
1. you add a element in postbit element
<button id="togglepostbit">Show/hid<button>
2. add below jquery code before </head> tag in showthread template (if you want for only showthread)
<script type="text/javascript">
$('# togglepostbit').on('click', function (e) {
e.preventDefault();
$('#postbitbox').toggle();
});
</script>