Bloom - How to Change the Flowers to the other options available
Navigate to Appearance > Editor.
Once there you’ll automatically see the style.css file. Look for the section that looks like this:
.site-container {
background: #fff url(images/floral.png) top center no-repeat;
box-shadow: 0 0 2px #eee;
margin: 32px auto;
max-width: 1120px;
overflow: hidden;
padding: 5px;
}
You will change the line bolded above to one of the following:
background: #fff url(images/confetti.png) top center no-repeat; (This is for the confetti dots image)
background: #fff url(images/watercolor.png) top center no-repeat; (This is for the watercolor image)
background: #fff url(images/geo.png) top center no-repeat; (This is for the geometric pattern)
background: #fff; (This is for no image and just a plain white background)
How can I remove the border around the site and have an all white site?
Navigate to Appearance>Editor
Once there you’ll automatically see the style.css file. Look for the section that looks like this:
body {
background: #eee url(images/bg.jpg);
color: #c2b0b0;
font-family: ‘Noticia Text’, serif;
font-size: 12px;
font-weight: 400;
line-height: 1.825;
}
.site-container {
background: #fff url(images/floral.png) top center no-repeat;
box-shadow: 0 0 2px #eee;
margin: 32px auto;
max-width: 1120px;
overflow: hidden;
padding: 5px;
}
.wrap1 {
border: 1px solid #f6f3f3;
}
And remove the lines bolded and save!