Home › Forums › CSS › Remove white space under header › Reply To: Remove white space under header
November 15, 2016 at 12:47 am
#247852
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.