I was told that this is a CSS code. I have been searching on how to code to add a black side tab or label (please see the picture - the black Live Chat tab) to my site. Would you share if you know how? Thank you very much.
That black side tab can be made as image absolutely positioned relative to body like the black div in my example below: <head> <style type="text/css"> .black { display:block; width:30px; height:100px; position:absolute; top:100px; right:0; background:#000; text-indent:-999999px; } </style> </head> <body> <div class="black">Press me button</div> </body> HTML: