Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Remove white space under header Reply To: Remove white space under header

#247852
Shikkediel
Participant

So I guess you’re not able to change it’s place inside the head element? You could try with JS, I suppose…

$(function() {
  $('style').eq(0).appendTo($('head')[0]);
});

Looks like an existing script is preventing to execute new scripts in the console so I can’t try it out myself.