Hide text when window size is reduced

Hello,

I am using version 8.1.2 and I want to hide the username and last login info from the web pages when the user reduces the window size of the browser. 

Could anyone please suggest how that can be achieved?

Thanks,

Namrata

Parents
  • Hi Namrata,

    Assuming you're referring to the Web Portal - One way would be to modify the CSS for the node/container to be responsive.

    This can be done by modifying the CSS style in Web Designer from Layout Definitions > Display settings > VI_Styles_RendererSettings_Default 

    @media only screen and (max-width: 600px) {
          %IDHERE% {
            visibility: hidden;
          }
    }


    Ryan

Reply
  • Hi Namrata,

    Assuming you're referring to the Web Portal - One way would be to modify the CSS for the node/container to be responsive.

    This can be done by modifying the CSS style in Web Designer from Layout Definitions > Display settings > VI_Styles_RendererSettings_Default 

    @media only screen and (max-width: 600px) {
          %IDHERE% {
            visibility: hidden;
          }
    }


    Ryan

Children
No Data