How do I change the background?

I’m a SUPER beginner- I’m trying to make a basic blog using blogger, but there are parts I want to change using html that blogger’s basic editor doesn’t allow. How can I change the background image of the light pink part? I’m so confused! I want to replace it with a pattern image.

Hello and welcome to the community :smiley:!
You should probably use the CSS background-image property on your div with a value of the url of the patterned image you want.
Ex:

body{
background-image: url("patterns.theme")
}

Or you can use the CSS background-color property to change the color of your background.
Ex:

body{
background-color: rgb(0,0,0)#black
}

Here is a link on how to go about it:
Change the design of you blog
Hope this helps!

Ps:It looks really pretty and the cat is just too cute :heart_eyes_cat:!

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