Background with Transparent Text overlay...?

I created a site that has a PNG with transparent text that sits above a background image.

I used mouse view in viewport to make the BG image move with mouse movement.

But I’ve seen people able to make the text transparent with CSS? Is that doable in web flow?

Hi @allergicto

You will need a bit of custom code if your page footer:

<style>
.YOUR-TEXT-CLASS
{
  -webkit-background-clip:;
   -moz-background-clip:;
  background-clip:;
  }
</style>

Hope this helps

1 Like

Something similar to this? I’m having a really hard time getting this to work…

This topic was automatically closed 125 days after the last reply. New replies are no longer allowed.