Hello!
I added a status bar in the top of my page and need to move down 40px the sticky fixed position of the Sub Menu. Please take a look at this page http://www.adaptixnetworks.com/hospedaje/ and scroll down, you will see that the sticky Sub Menu almost disappear because when scroll down, the element style top changes from auto to 80 and I need it to be 120px.
Thanks for your kind response
Regards,
Arturo
Hey arturocruztorres!
Please go to Enfold/js folder and open avia.js and find following line
this.css({top: modifier - 1, position: 'fixed'}); fixed = true
and change it to
this.css({top: 120px, position: 'fixed'}); fixed = true
Regards,
Yigit
Vigit,
Thanks for the response, I had to add ‘ ‘ in order to work.
this.css({top: ‘120px’, position: ‘fixed’}); fixed = true
Thanks again.
Regards,
Arturo