Hello,
yes ?? but we must analyze the scriptcode inside the “old side, with double picture”. Why? At your Mainpage the scriptcode has:
<!– branding and wf-td are inside a stylesheet called css “cascading style-sheet” and there are the options to design –>
<div id=”branding” class=”wf-td”>
<!– this is the link target to website –>
<!– Here is some new stylesheet preload-me and retinized (design) and pictures for the responsive design –>
<img class=”preload-me retinized” srcset=”https://www.futsalclubveenendaal.nl/wp-content/uploads/2017/05/banner_365.png 1x, https://www.futsalclubveenendaal.nl/wp-content/uploads/2017/05/banner_365.png 2x” alt=”Futsal Club Veenendaal”
<!– And here is the normal header and it’s styled with preload-me and retinized before –>
src=”https://www.futsalclubveenendaal.nl/wp-content/uploads/2017/05/banner_365.png” height=”162″ width=”365″>
So you see your banner is designed with the stylesheet “preload-me” that is one design-option there are more style-classes before. If you set this we say class
.preload-me to display:none
you never see things that are styled with that class alone. So we must inspect on the original side why:
.single-sp_player .preload-me {
display: none;
}
display no more header (banner). Normally that means your header-picture on the “old side”: https://www.futsalclubveenendaal.nl/player/francis-nijhof/
is also styled (designed) with this 2 classes:
.single-sp_player .preload-me
^^^^^^^^^^^^ it is very important that your manual added “design” code have both classes, because this is a conjunction. That means only if both classes are inside a scriptcode only than the “design-code” works.
So if your manual code is:
.single-sp_player .preload-me {
display: none;
}
please delete them, than we can inspect, why your header have the same style-code and is there a better option to disable the preload-picture without losing the headbanner, perhaps there are some other functions as:
only a example!!!!
.single-sp-player .preload-me .td .img { display: none; }
best regards,
Michael