Removing the extra space above the heading

  • volvocarsscgot
    Asked on September 1, 2016 at 9:12 AM
    Now, since I didn't want the "language"-flag I added some custom CCS in order to remove the flag but now there is some addition empty space above my heading (where the flag used to be) I_ don't want that space.
  • Jan
    Replied on September 1, 2016 at 10:31 AM

    I can see that you used this CSS code to hide the Language tool.

    .language-dd {
    visibility: hidden;
    }

    This CSS code will just hide the element but the space will still be visible. You can use this CSS code instead:

    .language-dd {
    display: none !important;
    }

    Here's the result:

    Removing the extra space above the heading Image 1 Screenshot 20

    Hope that helps. Thank you.

  • volvocarsscgot
    Replied on September 1, 2016 at 10:46 AM

    PERFECT - thank you!!!