• 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

    Also, I want to shrink the empty space that goes in between the image and my footer menu. It’s too big! If I didn’t know it’s there I would have not seen it. You see: https://www.nikoletamarkovic.com

    Please, can anyone help me resolve these problems, I am a newby and I don’t know how to work with css codes

Viewing 1 replies (of 1 total)
  • 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;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Homepage/one image problem’ is closed to new replies.