Hey. Firstly, in order to add any CSS to your theme you need to create a child theme or install a custom CSS plugin. You should then add any custom CSS to your child theme’s style.css file or your custom CSS plugin’s editor.
I want my homepage to be just a simple image, but I have the problem with the size of the image. I would like it to be large, and no matter what I try by changing its size, it always stays the same it’s like the margins on the side that are fixed and my image is small
Try the following CSS:
.home .scol {
width: 100%;
}
This will increase the width of the image. Let me know if it creates the look you were after.
I want to shrink the empty space that goes in between the image and my footer menu. It’s too big!
You can reduce this space using the following snippet:
#main {
margin-bottom: 0;
padding-bottom: 0;
}