Some assistance

SportainmentMG

Active member
Hey all I have been working on my site and have stumbled on an issue with my extra.css that hopefully someone will be able to assist in.

I added the following code to the extra.css template in order to have the xenforo copyright information viewable on my background.

Code:
a.concealed, .concealed a {
background: #990303 !important;
color: #ffffff !important;
text-decoration: underline !important;
}

Which results in this:
copyright.webp

However unfortunately at the same time it results in this happening on the user drop down stuff:

snip1.webp
With the username having the red background.

Is someone able to assist me with my code to get the username in the drop to just remain black.

While we are at it is someone able to help me with the code to get the link above it white when hovered at the moment it turns red.

Any help provided is greatly appreciated.
 
Try using this for your copyright link instead of the concealed class and that'll remove the other adverse affects your having

Code:
#copyright {
background: #990303 !important;
color: #ffffff !important;
text-decoration: underline !important;
}
 
Top Bottom