No display of number in FAQ

Hello,

I would like to know how I can remove the number in the title bar of the FAQ. Thanks in advance


Comments

  • and also we would like to remove the line and have everything aligned centered


  • Hi,

    1) To remove the number, you must write a custom CSS code and put it in the Custom CSS field in the Page Options.

    I can help you with that, but you need to attach a link to your website.

    2) Do you mean the yellow line?

    If yes, open the Style tab of this element, and in the Bar line tab, set the color to be fully transparent.

    3) Go to Advanced -> Custom, and in the Additional CSS field, put:

    text-align: center;
    

    Thanks

  • edited July 2022

    Hey, thanks for your answer.

    Here is the link to our website: https://web22.wecker.de/portfolio-item/genug-ist-nicht-genug-1977


    Is it possible to completely remove the line? The problem is that (with the line and the number) the text isn't fully centered as you can see on the screenshot


  • Please, use the following code:

    .faq .num{
       display: none;
    }
    .faq .title,
    .style-simple .faq .question .answer{
       padding-left: 20px!important;
    }
    

    Thanks

  • Hey,

    unfortunately it still doesn't work - nothing has changed

  • I was able to remove the number now but it still isn't centered and removed all the numbers. How can I make changes only to the faq in the grey box?

    The faq on the bottom of the page should stay the same


  • Did you put the custom CSS in the Page Options?

    In the website source, I can see only the first part of the code I have sent you, which hides the number, but you did not copy the part with the padding which will center the FAQ.

    To affect only this element, please, use this code:

    .mcb-item-2a66utuye .faq .num{
      display: none;
    }
    .mcb-item-2a66utuye .faq .title,
    .mcb-item-2a66utuye .faq .question .answer{
      padding-left: 20px!important;
    }
    

    Thanks

Sign In or Register to comment.