I just added this in my custom js to fix this.
jQuery(document).ready(function(){
var matchUrl = '/job/.*';
if ((new RegExp(matchUrl)).test(window.location.href)) {
$('#content').prepend('<div class="row" style="height:90px;background:#B72027"></div>');
$('.sjb-detail .list-data').each(function(index) {
var html = $(this).html();
var res = html.replace(/header/g, "div");
$(this).html(res);
})
}
var openings = '/jobs';
if((new RegExp(openings)).test(window.location.href)) {
$('.sjb-page .list-data').each(function(index) {
var html = $(this).html();
var res = html.replace(/header/g, "div");
$(this).html(res);
})
}
});
and did a bit of css to get this working