Hi there, I’m working on a page which includes some custom HTML&CSS (inside “Text” elements). Some of this code disappears when viewing the website as a not-logged-in user.
For example, I have the following:
<div class="home-exp-img" style="background: url(https://homefosca.com/wp-content/uploads/2017/11/vela.png);"></div>
When I’m not logged in and I look at the website, this turns to:
<div class="home-exp-img"></div>
Another example is this code:
<div style=" width: 5rem; height: 4px; ackground: hsl(27, 100%, 70%); margin: 2rem auto 4rem auto;"></div>
When I’m not logged in, it turns into:
<div></div>
What is the reason for this?
Thanks
Thanks!