overview of css tags
Hey all,
is there an overview or a table or something similar where we can see what each element is called via css?
In my example I would like to style different menu elements. for example the width of the submenu or a text-transform, etc.
I am really having problems to get the correct tags with browser inspect element…
thanks
regards
Achim
-
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 -
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 -
Hi Achim,
try to use this code:
h2 span {
text-transform: uppercase!important;
}0 -
the span tag was very helpful :-)
thanks.
regards
achim
0 -
anytime ;)
0
Please sign in to leave a comment.
Comments
5 comments