Search code examples
wordpresswordpress-theming

How to remove empty space in Avada WordPress theme


How do I remove the built-in blank space below the header? The theme is Avada The extra space is marked with a blue line


Solution

  • to remove the built-in blank space below the header you should this css of code:

    #main {
           padding-top: 0;
        }
        
        .header-avada {
           margin-bottom: 0;
        }