Thank you Crizzo, this looks like it could work. I'm just having trouble with the syntax, b/c I get no color change.Crizzo wrote: Fri Oct 25, 2019 10:42 pm Hi,
check the CSS-attribute selector: https://www.w3schools.com/css/css_attri ... ectors.asp
Regards
Code: Select all
[title="Post a reply"] {background-color:#87c47d;}
My apologies, I did not see the styles forum. Mods, please feel free to move this topic.3Di wrote: Sat Oct 26, 2019 12:15 am That's a style question You might want to ask there in the devoted forum?
Code: Select all
a[title="Post a reply"] {background-color:#87c47d;}
How are you applying that if you are not changing core files?
I think they mean the template files.david63 wrote: Sat Oct 26, 2019 7:11 amHow are you applying that if you are not changing core files?
But template files are core files!
I am using a child css file, as is common in Wordpress themes. No altering of core files here, not even a style template.david63 wrote: Sat Oct 26, 2019 7:11 am How are you applying that if you are not changing core files?
a[href*="posting.php?mode=reply"]
Code: Select all
/* Bottom Of Forums & Topics - New Topic Button / Post Reply Button */
.action-bar.bar-bottom .button {
background: pink;
border-color: purple;
}
/* Bottom Of Topics - Topic Tools Button */
.action-bar.bar-bottom .topic-tools .dropdown-select.button {
background: green;
border-color: red;
}
/* Bottom Of Topics - Quick Mod Button */
.action-bar.bar-bottom .quickmod.dropdown-container .dropdown-select.button {
background: yellow;
border-color: blue;
}
/* Bottom Of Forums & Topics - Jump Box Button */
.jumpbox .dropdown-select.button {
background: red;
border-color: green;
}
/* Bottom Of Forums - Sorting Options Button */
.action-bar.bar-bottom .sort-tools .dropdown-select.button {
background: brown;
border-color: orange;
}
.action-bar.bar-bottom
so only the buttons in the bottom action bar be effected..action-bar.bar-top
colours.css
style sheet, change the colours to whatever you want, one thing I don't recommend is using !important
- if you find you need to use it to get something to work - there should be another way to do it without using it.