How can I replace the background of the highlighted areas with a colour or an image?
The "XXX said:" is can be styled in EXTRA.css with
.bbCodeQuote .attribution {
background: #726C60 url('images/default/xenforo/gradients/form-button-white-25px.png') repeat-x top !important;
}
just change the background url to what you want.
Just use theThanks! How do you change the text colour?
Message block is controlled by
.messageUserBlock a.username {
color: red;
background: #726C60 url('images/default/xenforo/gradients/form-button-white-25px.png') repeat-x top !important;
}
The color:red; makes the default for the name color red. You can change this to whatever you want. It works for the other 2 examples also.
Add !important after the color and before the ";".Background Changes but not text Colour. I want to make text colour white. I've tried "color:white;" and "color:#ffffff;" snd its not working.
Got it. Thanks! One final bit of help - in the likes summary, the User link is grey. I want to make this white, while not changing the link colour on the rest of the site. Is this possible?Add !important after the color and before the ";".
That will force an override of the default - but, if you use custom codes in your group settings it may also override them.
She's offline right now, but she'll get a notice whenever she logs back in since she's participated in this thread (unless she stopped watching it).Thanks for your help Tracy!
Shelley, you around?
Got it. Thanks! One final bit of help - in the likes summary, the User link is grey. I want to make this white, while not changing the link colour on the rest of the site. Is this possible?
.likesSummary .username {color: red;}
.likesSummary a {color: green;}
.likesSummary {color: blue;}
Your ears get to burning?If you can provide a link to your forum it will be easier for the person helping to debug the issue and provide you with the necessary code.
Your ears get to burning?
I knew he could count on you to come thru in the crunch. Since I don't use the built in likes I was having to try and do it from the XF site - and not very well at that.
duh.... didn't think of that.I had to temp disable post ratings on my site.
/* LIKES SUMMARY */
.likesSummary {
.likesSummary .username {color: white !important;}
.likesSummary a {color: white !important;}
.likesSummary {color: white !important;}
background: #726C60 url('@imagePath/xenforo/gradients/threadview-bg.png') repeat-x top !important;
}
This is my site: http://ftvworld.thetvworld.org/forum/index.php?threads/new-rating-and-finacial-system.214/#post-1598
And this is the code I have put in:
Code:/* LIKES SUMMARY */ .likesSummary { .likesSummary .username {color: white !important;} .likesSummary a {color: white !important;} .likesSummary {color: white !important;} background: #726C60 url('@imagePath/xenforo/gradients/threadview-bg.png') repeat-x top !important; }
But it hasn't worked....
.likesSummary .username {color: white !important;}
.likesSummary a {color: white !important;}
.likesSummary {color: white !important;}
background: #726C60 url('@imagePath/xenforo/gradients/threadview-bg.png') repeat-x top !important;
}
try just adding this
Code:.likesSummary .username {color: white !important;} .likesSummary a {color: white !important;} .likesSummary {color: white !important;} background: #726C60 url('@imagePath/xenforo/gradients/threadview-bg.png') repeat-x top !important; }
If you are making all the text white you may as well do this in style properties and adjust the like text from in there.
We use essential cookies to make this site work, and optional cookies to enhance your experience.