• Resolved recreostudio

    (@recreostudio)


    A blank space after the menu, i think it is where can be uploaded an image, but i dont want to. how can i remove this space from the editor in wordpress? cause i cant find the HTML editor

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello recreostudio,

    Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.

    Currently, that blank section shows page title, but some reason CSS not applied, If you don’t want to hide that section and want to show page title then use below CSS code.

    .hero {
      background: #0a0a0a;
    }

    If you want to hide that section use below CSS code.

    .hero {
      display: none;
    }
    
    .site-content {
      margin-top: 6em;
    }

    Hope this will helps you.

    Thanks.

    Thread Starter recreostudio

    (@recreostudio)

    Yess, did it

    I’m really glad that you could helped me!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to remove this from the theme?’ is closed to new replies.