|
Neutral
|
I customized my own palette for myself,, buht I still dont know how to change the "WolfPlay" thing at the top with the two wolves,, and I'd like some assistance. I'd create the artwork/image I want up there, I'd transfer my palette to you, along with the image, and who ever is helping me, can edit the image into my palette, then send the palette back,, I can offer a couple apples, if need be ^^"
|
|
|
|
Darkseeker
|
hello hello I have the solution for you :> since there's four images (one for each season) there's this bit of code here that you have to plop in and edit to your liking c:
.mainscreen1 { background:url(https://i.postimg.cc/0QS4bmmM/sharon-mccutcheon-62vi3-TG5-EDg-unsplash.jpg); background-repeat: repeat; background-attachment: fixed; background-position: center; background-size: cover; } .mainscreen2 { background:url(https://i.postimg.cc/0QS4bmmM/sharon-mccutcheon-62vi3-TG5-EDg-unsplash.jpg); background-repeat: repeat; background-attachment: fixed; background-position: center; background-size: cover; } .mainscreen3 { background:url(https://i.postimg.cc/0QS4bmmM/sharon-mccutcheon-62vi3-TG5-EDg-unsplash.jpg); background-repeat: repeat; background-attachment: fixed; background-position: center; background-size: cover; } .mainscreen4 { background:url(https://i.postimg.cc/0QS4bmmM/sharon-mccutcheon-62vi3-TG5-EDg-unsplash.jpg); background-repeat: repeat; background-attachment: fixed; background-position: center; background-size: cover; } Edited at November 25, 2020 09:29 PM by Grimm
|
|
|
|
Neutral
|
Ahh, thankyou! So I assume 1 is Spring? And then the following goes summer, fall, winter, for 2, 3, and 4? Or,, which is which,,? And do I just copy and paste all of that to the bottom of the css, and replace the url in between the parentheses, or are the parentheses not mandatory/apart of that url itself?
|
|
|
|
Neutral
|
not sure if you got a response to this earlier, but yes, 1, 2, 3, and 4 are each of the seasons in the order that you said them respectively :) so you're correct in that and all you do is just change the url, so if this is the original: .mainscreen4 { background:url(original-image-url); background-repeat: repeat; background-attachment: fixed; background-position: center; background-size: cover; } your version with your new image should look like this: .mainscreen4 { background:url(new-image-url); background-repeat: repeat; background-attachment: fixed; background-position: center; background-size: cover; } the parenthesis don't go anywhere and the rest of the css stays the same! hope that helped if you needed it :)
|
|
|