• http://www.thecollegestash.com
    I am able to remove the space above the header but unable to remove the space below the header(logo).
    I edited this in the sty;e.css to remove the upper space:

    #header h1, #header h2 {
    font-size: 38px;
    display: block;
    float: left;
    display: inline-block;
    line-height: 70px;
    margin: 19px 0 0;
    color: #fff;

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try changing this code

    #header h1, #header h2 {
    font-size: 38px;
    float: left;
    display: inline-block;
    line-height: 70px;
    margin: 19px 0px 0px;
    color: rgb(255, 255, 255);

    into:

    #header h1, #header h2 {
    font-size: 38px;
    float: left;
    display: inline-block;
    line-height: 70px;
    margin: 0px 0px 0px;
    color: rgb(255, 255, 255);

    Tell me how it works out

    Also your CSS for h1 tag has margin bottom, remove that too

    Thread Starter Shiva1029

    (@shiva1029)

    No…I already did that…I changed it to 0 that makes the top space to go away…tell me where I need to go to make the bottom space to go away

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing space below the header,’ is closed to new replies.