MagicPattern CSS Backgrounds!

Try using this code.

<div class="background"></div>
<pre><span><style>
.background {
position:fixed;
margin-top:0;
width:100%;
height:100%;
top:0;
right:0;
z-index:-1;
/*-----Paste the CSS below this.-----*/
background-color: #f7f7e6;
opacity: 0.5;
background-image:  linear-gradient(135deg, #f7a845 25%, transparent 25%), linear-gradient(225deg, #f7a845 25%, transparent 25%), linear-gradient(45deg, #f7a845 25%, transparent 25%), linear-gradient(315deg, #f7a845 25%, #f7f7e6 25%);
background-position:  8px 0, 8px 0, 0 0, 0 0;
background-size: 16px 16px;
background-repeat: repeat;z
}
8 Likes

is still not working you missing code on top

Bingo!!!

3 Likes

bot how to change this code to work??? i copy from that website…

background-color: #E5E5F7;
opacity: 0.4;
background-image: radial-gradient(circle at center center, #444CF7, #E5E5F7), repeating-radial-gradient(circle at center center, #444CF7, #444CF7, 20px, transparent 40px, transparent 20px);
background-blend-mode: multiply;

<div class="background"></div>
<pre><span><style>
.background {
position:fixed;
margin-top:0;
width:100%;
height:100%;
top:0;
right:0;
z-index:-1;
background-color: #E5E5F7;
opacity: 0.4;
background-image: radial-gradient(circle at center center, #444CF7, #E5E5F7), repeating-radial-gradient(circle at center center, #444CF7, #444CF7, 20px, transparent 40px, transparent 20px);
background-blend-mode: multiply;
3 Likes

2 Likes

In the code I sent
/ * ----- Paste the CSS below this .----- * /
Replace the CSS below with your CSS.

2 Likes

thank you guys so much, this is link to my app where i post it for easy acces

The more I stay here, the more I am loving this community. So many talents and the only super responsive community I have found :star_struck:

Building blog site, copying this code :heart_eyes:

2 Likes

oh… i see… i missed that! cool… thank you
I’m learning a lot!

1 Like

That blog is gonna look amazing, no doubt! :star_struck:

3 Likes

Yayyy!! :blush:

just don’t make fun of the girl in that pictures… she is my niece :wink:

I guess he is talking about his app. The girl in that pic :see_no_evil:

2 Likes

He meant that to me :see_no_evil:

1 Like

I see!
If you take a closer look, you’ll find that Uzo and his niece have similar facial features.

Anyway…
Uzo’s niece is a very beautiful woman.
Everyone, that’s right, right?

1 Like

hahahahahah… looks like you should be a detective ! lol

2 Likes

Thanks to this thread, I was able to also create custom backgrounds! The code is slightly different than above.

<div class="background"></div>
<pre><span><style>
.background {
position: fixed;
margin-top:0;
width: 100%;
height:100%;
top:0;
right:0; 
left: 0%;
z-index:-100;
filter: brightness(50%);
background-image: url("URL"); 
background-size: cover;
background-position: center center;
}

Inside my User’s sheet I used a Single Value Column to call this HTML and then a Template Column to Inject the Background Image URL into the Single Value Column.

I also created some Text Color HTML to become white and used an ITE Column to use White Font if someone uploaded a background image, if not keep it black.

You can see some examples here:

journey.rs/sightseeing_withshy
journey.rs/creina_diary
journey.rs/kylienathan_

11 Likes

Tested with an image here and wow… thanks for this! :star_struck:

PS: Also tried removing nav and tab bar.

4 Likes

Thanks @Joe_Gabriele. That’s is pretty neat! Like it :+1: