• Resolved webcre8wpthemes

    (@webcre8wpthemes)


    Hello. I am nearly there. I dont have a call to action section just the top 4 boxes under the image curve. I need to move them up closer to the image to get rid of the white space there. I want to show as much as possible on the front page upper screen. How do I do this.

    Tks
    Wp8

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    You won’t be able to move the sidebars, but you can adjust margins and padding with surrounding elements. In this case, the “content” container which has this default style:

    #content {
        padding: 60px 0;
    }

    You can add this to your custom stylesheet and adjust the padding. But doing this to the “content” container will affect other pages too, so to just apply it to the front page, you will want to grab a class from the <body> tag of your page. Something like the class “home”

    .home #content {
        padding: 60px 0;
    }
    Thread Starter webcre8wpthemes

    (@webcre8wpthemes)

    Ok, thank you once again. Will have a go and let you know. I really do appreciate all your assistance.

    Thread Starter webcre8wpthemes

    (@webcre8wpthemes)

    Yes, has worked perfectly. Thanks so much.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Moving the top 1-4 boxes higher up’ is closed to new replies.