The annoying Vertical Green Bar On Left Side may have some aesthetic benefits somehow (if you ask the Web developpers), but it is really annoying me a lot and do not look good either, so Let’s remove it…
crapcoding
 

 

 

 

 
 

1. Use WinSCP to navigate your Netscaler VPX and open ctxs.authentication.css (located at: /var/netscaler/gui/vpn/css/)
and locate the following:

#logonbox-container
{
background: url(“../media/VerticalGreenBarOnly.png”) repeat-y scroll 0 0 transparent;
min-height: 230px;
margin: auto;
min-width: 654px;
position: relative;
top: 205px;
}
#logonbox-innerbox {
background: url(“../media/Screen_SemiTranslucent.png”);
display: table;
height:242px;
position: relative;
width: 100%;
margin-left: 9px;
}

and replace the above lines with this:

#logonbox-container
{
background: transparent;
min-height: 230px;
background: transparent;
margin: auto;
min-width: 654px;
position: relative;
top: 205px;
}

#logonbox-innerbox {
background: url(“../media/Screen_SemiTranslucent.png”);
display: table;
height:242px;
position: relative;
width: 100%;
margin-left: 0px;
}

And the result will look like this 🙂

goodwebcoding