Greetings,
I need help modifying the logo element within primary-menu/sticky-menu (header) so that it follows the same animation as the ul/il nav elements. My logo image is 60px in height and I wanted to maintain that size the moment the site is loaded but the logo size increases to 100px. I was able to change that with the following code in the Sticky Header section of style.css:
#logo img {
height: 60px;
-webkit-transition: height .4s ease, opacity .3s ease;
-o-transition: height .4s ease, opacity .3s ease;
transition: height .4s ease, opacity .3s ease;
}However, the logo element is confined to the top of the logo area and I have been having trouble centering the element/image with 20px remaining on the top and bottom margins of the logo area. I even tried margin-top: 20px; margin-bottom: 20px; (since the header is 100px) so I am assuming I am doing something wrong here.
Then I need the logo element to shift down with the same animation as the primary-menu nav ul il elements (navigation bar/header menu items) as the user scrolls down the page. I am unsure what JS function was used to animate the ul il elements, so I would need help there as well. Thank you for your consideration and time helping me with this.
