Ändern Sie den Namen des Formulars und der Schaltflächen in einer Kategorie

Hey community is it possible to change the button and place holders of only one category.
As the category I have is about new ideas, I would love to replace Add new topic with add new Idea, same for the placeholder

An example:

Hi Dante Dante,

This should do the trick:

.category-general {
    #create-topic {
        .d-button-label {
            display: none;
        }
        &:after {
            content: "New Idea";
        }
    }
    .composer-action-createTopic {
        .action-title {
            display: none;
        }
        .composer-action-title:after {
            content: "Create New Idea";
        }
    }
}

The category name selector will be found in the <body> tag :slight_smile:

2 „Gefällt mir“

Thanks for the quick reply, it is enough just to change it with css? Will it be the same for the place holder?

I updated my answer :v:

1 „Gefällt mir“

Thanks for the support!!! Now its time for me to try it!

1 „Gefällt mir“