Another Chaturbate-hack (don’t worry, its just a simple tweak) — the popular (tho account might be put at risk if Chaturbate decides you should not cover that particular section / take a look at CB’s TOS) the overlay on first tab.
Some webcam performers want to change the default with a micro banner or text…
The markup code is simple to understand and simpler to edit/add/use.
<p style="position:absolute;top: 135px;left: 32px;width: auto;height: 20px;z-index:120;display:block;background-color: #e23553;color:#fff;font-size:15px;padding-left:7px;padding-right:7px;text-align:center;padding-top: 7px;padding-bottom: 2px;">Webcam Performer Name</p>
– position can be changed by editing the top/left values defined by px
– background color can be changed if HEX value is edited #ffffff (white) / #000 (black) … so on
– font color (if you plan to add a text inside, if not, instead of default text an image can be added
– width and height…. self explanatory
– when using images inside the p element (replacing the editable text) padding values can and should be removed
Here’s a demo markup styling up the overlay tab but using an image instead of plain editable text
<p style="position:absolute;top: 135px;left: 32px;width: 135px;height: 28px;z-index:120;display:block;background-color: #e23553;text-align:center;"><img src="YOUR-IMAGE-URL-HERE" style="display:block;width:100%;height:auto;margin:0 auto;"/></p>
And there are many other variations of this markup code styling it as you see fit.