@Zy8712
Posted
Your project looks pretty good. Currently the way you have your background set up, the single image you selected is being repeated multiple times.
If you want to use both circles and position them you can do something along the lines of:
background-color: var(--theme-dark-cyan);
background-image: url("./images/bg-pattern-top.svg"), url("./images/bg-pattern-bottom.svg");
background-repeat: no-repeat, no-repeat;
background-position: right 52vw bottom 35vh, left 48vw top 52vh;
/* top img is offset 52 percent of the vw from the right and offset 35 of the vh from the bottom*/
/* bottom img is offset 48 percent of the vw from the left and offset 52 of the vh from the top*/
Hope you find this useful 👍
Marked as helpful
@danielmrz-dev
Posted
@Zy8712
Thank you! I'm gonna try that!
@danielmrz-dev
Posted
Hey, @Zy8712 !
Thank you very much for your help. I didn't know it's possible to use 2 images and set their position separately.
That was very helpful! Thanks, mate!