Hello,
I want to change the New Thread button for each forum nodes in a category. I was successful with this code for one node
I've got a lot of nodes do i have to repeat this code for each node or there is a tips to go faster ? like this...
Thanks !
I want to change the New Thread button for each forum nodes in a category. I was successful with this code for one node
Less:
[data-container-key="node-69"] {
.button.button--cta, a.button.button--cta {
background: rgb(0, 157, 220);
border-color: rgb(0, 157, 220);
}
.button.button--cta, a.button.button--cta:hover {
background: rgb(0, 146, 204);
border-color: rgb(0, 157, 220);
}
}
Less:
[data-container-key="node-69+node-70+node-83+etc..."] {
.button.button--cta, a.button.button--cta {
background: rgb(0, 157, 220);
border-color: rgb(0, 157, 220);
}
.button.button--cta, a.button.button--cta:hover {
background: rgb(0, 146, 204);
border-color: rgb(0, 157, 220);
}
}
Thanks !