For both thumb up and the other option?

I just rather have it turned off on my end.

What do you mean by the other option?
Oh c'mon I like that feature!
Thanks for your feedback! That was a permission issue, but only related to the announcement subforum. You were able to attch files in all other subforums (or "should" be able to). Now you can also attach files in the announcement subforum. Can you please check if you see the attachment option now?
Yeah now it's visible in both areas. The new forum software works good here.Shade wrote:Can you please check if you see the attachment option now?
Code: Select all
ul.topiclist dt .list-inner {
margin-right: 40%;
}
ul.topiclist dt {
margin-right: -40%;
}
Thanks for your input! I previously tried to change those two values, too. But unfortunately the table look much worse then in a certain window width range between 895px and 1040px.Shrimp wrote: ↑Tue Sep 10, 2019 5:27 pmCode: Select all
ul.topiclist dt .list-inner { margin-right: 40%; } ul.topiclist dt { margin-right: -40%; }
Code: Select all
@media screen and (min-width: 1040px) {
ul.topiclist dt .list-inner {
margin-right: 40%;
}
ul.topiclist dt {
margin-right: -40%;
}
}
Added it. Works like a charm! Thank you very much.Shrimp wrote: ↑Tue Sep 10, 2019 5:53 pm Ah, that makes sense, I forgot.
Here's a tweak, so this will only apply to higher resolutions:
Code: Select all
@media screen and (min-width: 1040px) { ul.topiclist dt .list-inner { margin-right: 40%; } ul.topiclist dt { margin-right: -40%; } }