Viewing 2 reply threads
You must be logged in to reply to this topic.
Just for your information, I have changed the CSS within the theme parent’s style.css file for now as my client is frustrated. This is obviously not a permanent solution, I need the correct CSS for theme child. I tried:
#logo img {
max-width:100% !important;
top:50%;
position:relative;
}
Hello,
Your logo image has different dimensions from the demo one. Since it is bigger, it may need css edit to be just like you want it to.
Please do not alter style.css file in parent theme as it will prevent you from taking future updates. Add all custom css code into your Custom Css box located in General Options.
Please add this code:
@media (max-width:480px){
#logo img {
top: 29% !important;
left: 11% !important;
}}
It will center your logo in mobile. Edit the values to your wish.
Best regards!
You must be logged in to reply to this topic.