BuddyBoss Home – Web Support Forums Themes Boss. theme html / bbcode not processing properly.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Question

    #40322
    @fabriciusgmail

    Not sure why but on my page the html is not parsing (if I say that correctly)

    https://get-gaming.net/about/teamspeak/ The red text for example should be in dot list and some parts in number list and it does show this upon inspect but the result is not there.

    <li>test</li>

    ^That for example ain’t working.

    Answers

    #40324

    Anonymous
    @

    Hi @fabriciusgmail , theme css had included no style for list inside the boss/css/main-global.css

    if you have planing to use your html directly you can added your own classes in the html and add your desired css in custom.css of child theme

    
    media="all" {
    ol, ul {
      list-style: none;
    }
    }
    

    I had checked you are using Visual Composer, and used html box to paste the html code
    Theme is supporting the Visual composer as well.
    Regards
    Varun Dubey

    #40325
    @fabriciusgmail

    If visual composer is supported then why does it not work properly? I’ve no clue how to fix this.

    #40326
    @fabriciusgmail

    Also I used the text box of visual composer.

    #40331
    @fabriciusgmail
    
    media="all"{}
    ul {
      list-style: disc outside;
    }
    ol {
      list-style: disc outside;
    }
    li {
      list-style: decimal outside;
      margin: 0 0 0 24px;
      display: list-item;
      text-align: -webkit-match-parent;
    }
    }
    

    *sighs* why isn’t this just supported? Such an expensive theme yet basic things are missing.

    #40410

    Anonymous
    @

    @fabriciusgmail we have not included a generalized style for li and ul and kept as list-style: none; that’s why you are not getting that, it only need item specific style get included, if we are including for all then it start displaying bullets and other li style in the buddypress elements.

    I will forword this issue to developers as well , to cross check it once.

    Regards
    Varun Dubey

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘html / bbcode not processing properly.’ is closed to new replies.