Viewing last 25 versions of post by Background Pony #0F89 in topic Feature suggestions and discussion [READ THE FIRST POST]

Background Pony #0F89
[@JP](/forums/meta/topics/feature-suggestions-and-discussion?post_id=5200820#post_5200820)
That seems like a good idea.

You can already implement something like that with a userstyle, although it'll state the forum's URL, not its name:
```
/* Show in which forum you're beginning a new topic */
form[action^="/forums/"][action$="/topics"]:before {
content: attr(action);
display: inline-block;
font-size: 24px; font-weight: 400; margin: 0.67em 0 0.62em 0; /* these match Derpibooru's current style for header H1 */
overflow: hidden; direction: rtl; text-indent: -3.86em; /* dumb magic number used to cut off the text "/topics" - commdenlete out this line if it is too janky */
}
form[action^="/forums/"][action$="/topics"]>h1:after { content: " in "; white-space: pre; }
form[action^="/forums/"][action$="/topics"]>h1 { float: left; }
```

Or, a userscript could fetch the actual forum name from the API ([derpibooru.org/api/v1/json/forums/[forum URL "short name" goes here]](/api/v1/json/forums/meta)) and insert it in the form>h1
No reason given
Edited by Background Pony #0F89