Rho Delta Well-known member Nov 4, 2011 #1 I want the message count color to match the part that has the username and title. I figured out how to do it using the color slider thing but it effects colors of other stuff when I do that. I just want it to affect this area ONLY.
I want the message count color to match the part that has the username and title. I figured out how to do it using the color slider thing but it effects colors of other stuff when I do that. I just want it to affect this area ONLY.
F Floris Guest Nov 4, 2011 #2 You could edit the template, give it an extra custom class. And set that custom class to a colour? Normal code: class="xenforosclass" Your code: class="xenforosclass myclasshere" And in extra.css set .myclasshere { color: green } Upvote 0 Downvote
You could edit the template, give it an extra custom class. And set that custom class to a colour? Normal code: class="xenforosclass" Your code: class="xenforosclass myclasshere" And in extra.css set .myclasshere { color: green }
P Paul B XenForo moderator Staff member Nov 4, 2011 #3 Add to EXTRA.css: Code: .messageUserBlock .extraUserInfo dt { color: red; } Change the colour to suit. Oh wait, you mean the background? Code: .messageUserBlock .extraUserInfo { background-color: @primaryLighterStill !important; } Upvote 0 Downvote
Add to EXTRA.css: Code: .messageUserBlock .extraUserInfo dt { color: red; } Change the colour to suit. Oh wait, you mean the background? Code: .messageUserBlock .extraUserInfo { background-color: @primaryLighterStill !important; }
F Floris Guest Nov 4, 2011 #4 Will that not change the whole thing, rather than just message count? Upvote 0 Downvote
P Paul B XenForo moderator Staff member Nov 4, 2011 #5 For the first one, it will change all extra info text headings, but he only has one by the look of it. For the second one, the lighter background colour will change to the darker colour above. Upvote 0 Downvote
For the first one, it will change all extra info text headings, but he only has one by the look of it. For the second one, the lighter background colour will change to the darker colour above.
Rho Delta Well-known member Nov 4, 2011 #6 The background one worked, now is there a way to decrease the spacing between the user title and the message count? Upvote 0 Downvote
The background one worked, now is there a way to decrease the spacing between the user title and the message count?
P Paul B XenForo moderator Staff member Nov 4, 2011 #7 Change it to this: Code: .messageUserBlock .extraUserInfo { background-color: @primaryLighterStill !important; padding-top: 0 !important; } If you want even less spacing, add this: Code: .messageUserBlock h3.userText { padding-bottom: 0 !important; } Upvote 0 Downvote
Change it to this: Code: .messageUserBlock .extraUserInfo { background-color: @primaryLighterStill !important; padding-top: 0 !important; } If you want even less spacing, add this: Code: .messageUserBlock h3.userText { padding-bottom: 0 !important; }