Hi there, I need to move the main logo 5px to the left, and appear a little bigger on mobile. I have attached images. Thank you, Leo
Hi Leo, Use the css code given below. Code: @media only screen and (max-width: 960px) and (min-width: 767px){ .header_wrapper .logo_wrapper .logo img { margin-left: -5px; width: 80%; } } Thanks, Praveen