Reply To: Site Header Issue – EPIK 1.5

Homepage Community Forums Epik Theme Support Site Header Issue – EPIK 1.5 Reply To: Site Header Issue – EPIK 1.5

#19352
Wes
Moderator

    So it looks like the only way to prevent it from doing that is to change the position to relative in the Responsive section of the CSS. If you add this in your responsive section around line 3875 –

    	.site-header.shrink {
    		position: relative; 
    	}

    …it will eliminate the jumping effect. I tested this by adding it under the section labeled –

    @media only screen and (max-width: 767px) { Which is located on line 3875 in your CSS.

    Give that a try and let me know if it works.