XF 1.1 Where do I find the .css template for this?

Enitoni

Member
4dKJk.png

I cannot find the .css template for this piece. It's the thing on top and bottom of threads that have been locked.
 
background-image: none !important;
border-radius: none !important;

Or if you prefer, search the templates for the class and edit the css template directly.
 
Using a browser inspection tool is the only way you are going to find out the classes without searching through the templates in the ACP.
Chrome has one built in.
 
Okay so, I have another problem.
I've tried to edit the color of the link in messages when you hover over them, But whatever I do, I cannot remove the annoying box shadow.
Here's a screenshot.

4ufMA.png


Additionally, I'm struggling to change the link colors in some css, As it seems it's prioritizing the base link CSS code.
 
Oh my god. It worked. Thank you so much!

However, I'm still having issues with the Discussion list and I did search for that one.
4uYUE.png

I want to change the text colour of the titles of the read threads. I've tried using the !important code in discussion_list.css but to no avail.
 
Oh my god. It worked. Thank you so much!
I want to change the text colour of the titles of the read threads. I've tried using the !important code in discussion_list.css but to no avail.
Try (where the white is for unread ones and green is the read - change to what you want)

Code:
/* Color unread node titles */
.node .unread .nodeText .nodeTitle a {
color: white;
}
/* Color read node titles */
.node .nodeText .nodeTitle a {
color: green;
}
 
Last edited:
Can I add this to EXTRA.css ?

EDIT: Also, I just added that code, And that changes the colour to the subforums. I want to change the colours of the actual threads when they are read.
 
Last edited:
Top Bottom