Released 2x How to change Pinned Thread Colour ?

ShieldX

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

Reputation:

using : xf 2.2

any guide how to change pinned thread style ?

Glowing , rainbow kind of..
 

BattleKing

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

Reputation:

In Extra.less like this:
Less:
.structItemContainer-group--sticky {
    background-color: antiquewhite;
}

Less:
.structItemContainer-group--sticky {
    background-image: url(data/images/effet3.gif), linear-gradient(90deg, #ff0000 0%, #6a0888 100%, #8904b1);
    animation: godlyanim 5s infinite linear;
}
 
Last edited:

ShieldX

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

Reputation:

In Extra.less like this:
Less:
.structItemContainer-group--sticky {
    background-color: antiquewhite;
}

Less:
.structItemContainer-group--sticky {
    background-image: url(data/images/effet3.gif), linear-gradient(90deg, #ff0000 0%, #6a0888 100%, #8904b1);
    animation: godlyanim 5s infinite linear;
}
BattleKingi saw thread pinned style in "DragonByte Shop Addon" , but in that there is no setting for pinnned thread style , if any anyone want to buy sticky thread , but cannot change it colour or something....to glow , there is nothing , so dragonbyte shop is useless ,

i will test your code manully.
 

Hsjsww

Active member
Registered
Joined
Oct 14, 2022
Messages
33
Points
8

Reputation:

1=> Log in to the Admin Control Panel of your forum.

2=> In the left-hand menu, click on "Appearance," then "Style Properties."

3=> Scroll down to the "Custom CSS" section.

4=> Add the following code to the Custom CSS box:
Code:
.threadList .sticky
{
    /* add your style changes here */
}

You can then add any CSS style changes that you want to apply to pinned threads within the curly braces. For example, if you want to change the font color to red, you could add the following line:

Code:
color: #FF0000;

You can also use this method to change other aspects of the pinned threads, such as the font size, background color, and more.

5=> Click "Save" to apply the changes.

This will change the style of pinned threads on your forum. If you want to further customize the appearance of your forum, you can use additional CSS code to change other elements, such as the font, text color, and more.
Contact telegram @hamzaanonime
 
Last edited:

BattleKing

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

Reputation:

1=> Log in to the Admin Control Panel of your forum.

2=> In the left-hand menu, click on "Appearance," then "Style Properties."

3=> Scroll down to the "Custom CSS" section.

4=> Add the following code to the Custom CSS box:
Code:
.threadList .sticky
{
    /* add your style changes here */
}

You can then add any CSS style changes that you want to apply to pinned threads within the curly braces. For example, if you want to change the font color to red, you could add the following line:

Code:
color: #FF0000;

You can also use this method to change other aspects of the pinned threads, such as the font size, background color, and more.

5=> Click "Save" to apply the changes.

This will change the style of pinned threads on your forum. If you want to further customize the appearance of your forum, you can use additional CSS code to change other elements, such as the font, text color, and more.
Contact telegram @hamzaanonime
HsjswwI guess you are talking about Xenforo 1, right
 

pattycake

Member
Registered
Joined
Dec 30, 2022
Messages
22
Points
1

Reputation:

BattleKing

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

Reputation:

Top