Support » Themes and Templates » How to change header gap

  • Hi All

    I am using wordpress for y website, I used a theme to develop it but Now I want to remove the gap above my page but not able to find the way. I have knowledge of wordpress but not a expert.

    can you guys please direct me to the file i need to edit to make the change to the website.

    My website is: http://www.print365.ie/

    Thanks
    regards
    Aine Philip

Viewing 2 replies - 1 through 2 (of 2 total)
  • Whatever theme you use, never edit it directly, do it via child theme instead.
    http://codex.wordpress.org/Child_Themes

    For small CSS adjustments, a Custom CSS plugin would suffice.
    http://wordpress.org/plugins/search.php?q=custom+css

    /* ----- topmost spacing remove ----- */
    #wrapper { margin-top: 0;  }
    
    /* ----- topmost spacing adjust ----- */
    .container { padding-top: 20px;  }
    
    /* ----- topmost border radius remove ----- */
    #wrapper { border-radius: 0;  }
    
    /* ----- bottommost border radius remove ----- */
    #footer { border-radius: 0;  }
    
    /* ----- bottommost spacing remove ----- */
    #wrapper { margin-bottom: 0; }
    
    /* ----- page entry title top margin adjust----- */
    .page_heading { margin-top: 24px; }
    Thread Starter Aine

    (@print365)

    Hi Paul

    Thanks very much for help, it is really helpful, will try to make the changes. It will help my flyer printing business go up.

    cheers

    Aine

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change header gap’ is closed to new replies.