Comment to 'How to add a block to all website pages?'
  • Hi @LeonidS@LeonidS, I have found the answer to my own question by mysefl.

    To hide it on the mobile app, the following class attribute should be added to the tag/element

    bx-def-mobile-app-hide
    

    For other devices, these ones should be used:

    To hide on the phone:

    bx-def-media-phone-hide
    

    To hide on the tablet:

    bx-def-media-tablet-hide
    

    To hide on the desktop:

    bx-def-media-desktop-hide
    

    and it works.

    Additionally, the following class attributes can be used:

    To display something to guest only:

    bx-hide-when-logged-in
    

    To display something to members only:

    bx-hide-when-logged-out
    

    Update:

    To apply a css style to visitors/guests only, use (thanks to LeonidS):

    .bx-user-unauthorized .my-element {
    your style here;
    }
    

    Thanks