Remove cover or change, blogger

0

Hello, I'm having a hard time with the blogger I'm doing for college, I wanted to remove this part to see that the name of the site is written, or if it's possible to change it to a cover of mine.

It is related here:

#hen{background-color: #c82de5; background-image: linear-gradient(to bottom, #c82de5, #67ad96); display: block; padding:100px 0px; position: relative; width: 100%;}
    
asked by anonymous 03.10.2017 / 22:38

1 answer

1

Both things are possible, leave it invisible or change the background to an image.

To leave invisible change the value of the property display from CSS to 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 for an image would be the code below by 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%;
}
    
03.10.2017 / 22:48