BBCode Bold and Bullet lists doesn't work

2Tap

Active member
Registered
Joined
Aug 8, 2022
Messages
25
Points
3

Reputation:

Hello,

I am using the XenDark nulled theme and for me the Bold Styling and bullet lists doesn't work.

CAVtEaS.gif


Is there a way to fix this?
 

BattleKing

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

Reputation:

sent a link to the board please
 

2Tap

Active member
Registered
Joined
Aug 8, 2022
Messages
25
Points
3

Reputation:

View previous replies…

BattleKing

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

Reputation:

I changed the theme and it seems to be working now. I was using XenDark, shits bugged there.
2TapIt looks like that some settings has been made for bbwrapper ol and ul, look at the installed theme

But it still looks a little bit strange, the webpage is really slow responding and freeze the browser from time to time
 

2Tap

Active member
Registered
Joined
Aug 8, 2022
Messages
25
Points
3

Reputation:

It looks like that some settings has been made for bbwrapper ol and ul, look at the installed theme

But it still looks a little bit strange, the webpage is really slow responding and freeze the browser from time to time
BattleKingWhere do I check that? bbwrapper
Website loads fine for me
 

2Tap

Active member
Registered
Joined
Aug 8, 2022
Messages
25
Points
3

Reputation:

It looks like that some settings has been made for bbwrapper ol and ul, look at the installed theme

But it still looks a little bit strange, the webpage is really slow responding and freeze the browser from time to time
BattleKing
Code:
.bbWrapper
{
    // This approach is needed to normalize browser differences that normalize.css won't handle within BB code/rich text
    // sections. You may need higher specificity to override some situations because of this.

    ol:not(.is-structureList),
    ul:not(.is-structureList)
    {
        margin-top: 1em;
        margin-bottom: 1em;
        overflow: hidden;
    }

    ol:not(.is-structureList) ol:not(.is-structureList),
    ol:not(.is-structureList) ul:not(.is-structureList),
    ul:not(.is-structureList) ol:not(.is-structureList),
    ul:not(.is-structureList) ul:not(.is-structureList)
    {
        margin-top: 0;
        margin-bottom: 0;
    }
 

2Tap

Active member
Registered
Joined
Aug 8, 2022
Messages
25
Points
3

Reputation:

I changed the theme and it seems to be working now. I was using XenDark, shits bugged there.
2TapSo I compared the source with the default xF theme, and it seems that my theme doesn't add the ::markers which are the symbols in front of the lists. How do I fix that, I literally have no idea.

AFs8vQW.png
 

BattleKing

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

Reputation:

So I compared the source with the default xF theme, and it seems that my theme doesn't add the ::markers which are the symbols in front of the lists. How do I fix that, I literally have no idea.

AFs8vQW.png
2TapWhich themes you are using?
It looks like the list-style is not set

Less:
ol, ul {

    list-style: none;

}
 

2Tap

Active member
Registered
Joined
Aug 8, 2022
Messages
25
Points
3

Reputation:

Do you have any template modifications.
BattleKingI removed from extra.less

Code:
ol, ul {
    list-style: none;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

^ ol, ul from there

Working now.
 
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,520
Points
523

Reputation:

I removed from extra.less

Code:
ol, ul {
    list-style: none;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

^ ol, ul from there

Working now.
2TapThats what I thougth that there is some modification, good that it is solved now.
 
Top