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:
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
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
Thanks for the support!!! Now its time for me to try it!