Hey guys!
In this tutorial, I'll be showing you a very basic CSS code. How to change the background.
To add a background, find or insert this code into your CSS:
To make the background an image, put this code inside the body tags:
To make the background a color, put this code inside the body tags:
Remember to change the #ffffff to your own HTML color code.
Hope this helped
McStormify
In this tutorial, I'll be showing you a very basic CSS code. How to change the background.
To add a background, find or insert this code into your CSS:
Code:
body {
}
To make the background an image, put this code inside the body tags:
Code:
background-image: url('YOUR IMAGE URL HERE')
To make the background a color, put this code inside the body tags:
Code:
background-color: #ffffff
Remember to change the #ffffff to your own HTML color code.
Hope this helped
McStormify