Skip to main content

overview of css tags

Comments

5 comments

  • Alex

    Hi Achim,

    unfortunately, there is no such thing. If you want to customize an element and you do not have the desired options you will be able to do this with Custom CSS. But, you can find the corresponding CSS classes only through Inspect Element. You can also add your custom class in element settings: https://jmp.sh/bzYYsIP

    0
  • Achim Gehrig

    Hi Alex, thanks for the quick reply.

    Is it possible to change all headings at once and what would be the right css tag?

    I would like to text-transform uppercase my headings.

    But I am not even able to change heading2 using

    .brz .brz-tp-heading2 {
    text-transform: uppercase !important;
    }

     

    Any tips appreciated :-)

     

    Thanks

    regards

    Achim

    0
  • Alex

    Hi Achim,

    try to use this code:

    h2 span {
    text-transform: uppercase!important;
    }

     
    0
  • Achim Gehrig

    the span tag was very helpful :-)

    thanks.

    regards

    achim

    0
  • Alex

    anytime ;) 

    0

Please sign in to leave a comment.