I am having troubles centering the logo on the mobile version? Is there any trick to keep it centered instead of left justified? The sample website I am working on is www.youngswebsolutions.com Thanks in Advance!!!
Hello, Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: @media only screen and (max-width: 480px){ .header .logo { text-align: center; margin-left: 25px; } } This will solve your issue.