AmberCutie's Forum
An adult community for cam models and members to discuss all the things!

Hide Header in Chaturbate Bio (Model's Bio and Free Webcam)

  • ** WARNING - ACF CONTAINS ADULT CONTENT **
    Only persons aged 18 or over may read or post to the forums, without regard to whether an adult actually owns the registration or parental/guardian permission. AmberCutie's Forum (ACF) is for use by adults only and contains adult content. By continuing to use this site you are confirming that you are at least 18 years of age.
Mar 26, 2020
40
15
51
Telegram
siren.chat
Twitter Username
@siren_tlg
Just sharing a tip for models and custom bio creators.
The header in the top-left corner of a Chaturbate bio isn’t very useful since the model’s name is already visible in plenty of other places.
Plus, it takes up valuable space that could be better used for things like social media or content site icons.

I’ve seen many people try to hide this header using different tricks. One of the best approaches right now is probably using backdrop-filter: blur(999px).
This method avoids light and dark mode issues, where a coloured rectangle never works in one of them.

Even with this solution, the rectangle can stand out, especially in dark mode or with a long username.
Here’s a tweak to make it less noticeable (almost invisible but though not perfect). Hope it helps!

HTML:
<!-- BIO HEADER REMOVER BEGIN --><b style="
    width: 500px;
    height: 62px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    backdrop-filter: blur(230px);
    -webkit-backdrop-filter: blur(230px);
    mask:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 18px,
            rgba(0, 0, 0, 1) calc(100% - 50px),
            rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 20px,
            rgba(0, 0, 0, 1) calc(100% - 25px),
            rgba(0, 0, 0, 0) 100%
        );
    mask-composite: intersect;
"></b><!-- BIO HEADER REMOVER END -->

For example, compare backdrop-filter: blur(999px):
Screenshot 2024-12-27 at 06.23.44.png

And the code above:
Screenshot 2024-12-27 at 06.20.22.png

It’s still noticeable on a good screen but feels much more visually appealing.
So far, I haven’t run into any issues with this approach, aside from the slightly larger code size.
I’ve already implemented it in our https://siren.chat/chic service.

If there’s interest, I can publish it — maybe as a gist — to provide an up-to-date link and make updates if better ideas come along. Let me know if that would be helpful!
 
  • Helpful!
Reactions: cbhours
all " position: fixed;" (and "var") are replace by CB with "absolute".
Fixed will place it on top of your screen (and CB don't want that).
And you also want it absolute , you want it on top of your bio.
So for good coding , make position: absolute; .
 
  • Like
Reactions: SIREN
all " position: fixed;" (and "var") are replace by CB with "absolute".
Fixed will place it on top of your screen (and CB don't want that).
And you also want it absolute , you want it on top of your bio.
So for good coding , make position: absolute; .
Good point, thanks! I’ve fixed fixed to the absolutely correct absolute.
Also, width: 500px; was causing a scrollbar in mobile mode, so I updated it to width: 100%; max-width: 500px;.

Since I can’t edit my initial post, I’ve created a gist, which I’ll update if anyone finds a better solution: