Thanks for your help to create a widget area in the header. But how can I change the position of the “Jameda” picture? Id like to have it between the website logo and the first menu option “home”
Link is in private content :)
And, even more important, the Image should stay in the header when the header shrinks. At the moment the picture stays at the same position if u scroll down
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#header .widget {
position:absolute!important;
left:100px!important;
top:-50px!important;
}
#header.header-scrolled .widget {
position:absolute!important;
left:55px!important;
top:-45px!important;
}
#header.header-scrolled .widget img {
width:100px;
height:auto;
}
Best regards,
Vinay
Thank you so much! Working perfectly :)