[Xenfocus] illuminate (dark)

XF2 Style [Xenfocus] illuminate (dark) 2.2.13

No permission to download

Hasslek

New member
Registered
Joined
Mar 11, 2022
Messages
3
Points
1

Reputation:

I am desperate, how can I change the color of the categories?
 

Ayon

[Developer]
Collaborate
Registered
Joined
Oct 18, 2019
Messages
250
Points
253

Reputation:

I am desperate, how can I change the color of the categories?
Hasslek
CSS:
.block-header::before, body[data-template="thread_view"] .p-body-header::before, body[data-template="forum_view"] .p-body-content .block-container::before, .p-header::before, .message--quickReply::before {
    background-image: linear-gradient(to right, #d90a0a 0%, #ed0000 50%, #f00 100%);
    background-blend-mode: overlay;
    background-size: 600px;
}
 

jommytonny888

Well-known member
Registered
Joined
May 31, 2022
Messages
166
Points
28

Reputation:

CSS:
.block-header::before, body[data-template="thread_view"] .p-body-header::before, body[data-template="forum_view"] .p-body-content .block-container::before, .p-header::before, .message--quickReply::before {
    background-image: linear-gradient(to right, #d90a0a 0%, #ed0000 50%, #f00 100%);
    background-blend-mode: overlay;
    background-size: 600px;
}
AyonWhere the hell do you add this? Some more explanation would be usefull
 

ShieldX

Well-known member
Registered
Joined
Mar 27, 2022
Messages
449
Points
53

Reputation:

bro there is issue like logo not seeing after putting logo url , i check with default xenforo theme it work but same thing i do in this doesnt work..logo issue and how to change catogiries color , developer dont allow to know without paying to them as well remove branding...
 

designer

New member
Registered
Joined
Apr 18, 2022
Messages
2
Points
1

Reputation:

taboot

Well-known member
Registered
Joined
Oct 6, 2019
Messages
57
Points
28

Reputation:

how to know the version i have .. ??
 

SNap!

Collaborate
Collaborate
Registered
Joined
Mar 17, 2022
Messages
555
Points
253

Reputation:

how to know the version i have .. ??
tabootfor Style Version open style.xml and search for version string


Style-Version.jpg
 

taboot

Well-known member
Registered
Joined
Oct 6, 2019
Messages
57
Points
28

Reputation:

for Style Version open style.xml and search for version string


View attachment 29545
SNap!thank you
but what about this method ..?!
the style Templates >> xenfocus_base.less >> got to the bottom

s12.PNG


because i use your method it say 2.2.9
but when i check from the template it say 2.2.8

I'm confused now !?
 

SNap!

Collaborate
Collaborate
Registered
Joined
Mar 17, 2022
Messages
555
Points
253

Reputation:

thank you
but what about this method ..?!
the style Templates >> xenfocus_base.less >> got to the bottom

View attachment 29549

because i use your method it say 2.2.9
but when i check from the template it say 2.2.8

I'm confused now !?
tabootmaybe works,as i noticed from 2.2.8 to 2.2.9 only page container have some changes.

check outdated templates
 

jommytonny888

Well-known member
Registered
Joined
May 31, 2022
Messages
166
Points
28

Reputation:

How to make every line different color? I just found 1 code to change all line color but is saw in original page demo one node can have A color , second node B color and etc. ( the orange line original )
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,497
Points
523

Reputation:

How to make every line different color? I just found 1 code to change all line color but is saw in original page demo one node can have A color , second node B color and etc. ( the orange line original )
jommytonny888Add this to the extra.less template.



Less:
       [data-template="forum_view"]
{
.structItem-title a
{
color: orange;
}
}
or
Less:
.structItem-title a { color: lime!important;}

Or with the help of an addon
 
Top