What's new
Xen Factory

Register today to become a member! Once signed in, you'll be able to start purchasing our products, ask questions, request support and suggest new ideas!

  • This area is dedicated to the support of our xF1 add-ons. For xF2, please use the dedicated area: HERE.
  • We are aware that a no permission error was shown when you tried to purchase in the last 2 days, this is now fixed.

Support Resolved Colour issues

RobC

New Member
Hello,

I would like to adjust the colours on the documents manager to match the theme properly but when I tried going to the style properties for the document manager it seems it cannot be edited there. I have circled what I would like edited if you could point me to where I can edit the background colours, thanks!
 

Attachments

  • Untitled.png
    Untitled.png
    19.7 KB · Views: 4

Clement

Freaky Coder
Staff member
Hi,

You would have to add in EXTRA.css to override the following :
Code:
    .documentListItem .documentImage,
    .documentListItem .documentStats
    {

        background: @primaryLightest url('@imagePath/xenforo/gradients/category-23px-light.png') repeat-x top;

    }

Clément
 

RobC

New Member
Hello,

This seems to change the font colours, its the padding that seems to have the rgb(166, 166, 166) colour but when inspecting it I cannot find the right part to add to extra.css.
 

RobC

New Member
I tried as you said and also with things such as...

Code:
.documentListItem .documentImage
{
    color: @xbColor1;
}

But it doesn't work, the text changed colour not the backgrounds.
 

Clement

Freaky Coder
Staff member
This css code is for font color indeed :)

See my example, it contained a background tag not a color tag.

You would use :
background-color: @xbColor1;
 
Top