Is it possible to center justify the header logo, while maintaining the functionality of the responsive site for smartphones? Thank you. Robert
Hello, Paste the code given below in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .logo a img { margin-left: 321px; } @media only screen and (max-width: 960px) and (min-width: 767px){ .logo a img { margin-left: 0px; } } @media only screen and (max-width: 767px) and (min-width: 480px){ .logo a img { margin-left: 0px; } } @media only screen and (max-width: 480px){ .logo a img { margin-left: 0px; } } This will solve your issue.