Both things are possible, make invisible or change the background to an image.
To make invisible change the value of the property display
of CSS
for none
.
#hen{
background-color: #c82de5;
background-image: linear-gradient(to bottom, #c82de5, #67ad96);
display: none;
padding: 100px 0px;
position: relative;
width: 100%;
}
To change the background to an image would be the code below changing IMAGE URL, by the image link:
#hen{
background-color: #c82de5;
background-image: url("URL DA IMAGEM");
display: block;
padding: 100px 0px;
position: relative;
width: 100%;
}
To leave the background image 100% would look like this:
#hen{
background-color: #c82de5;
background-image: url("URL DA IMAGEM");
background-size: 100% 100%;
display: block;
padding: 100px 0px;
position: relative;
width: 100%;
}
In the display:block swap the block for None
– Lucas de Carvalho
now came out, perfect, but to add an image would be like?
– Miguel Filipe