Hi,
I would like to position my logo to the left corner. I mean the most possible left corner without space or with a really little space.
I tried this code in my Quick CSS and custum.css but it doesn’t work.
strong.logo {
position: relative;
left: -15%;
}
Is there any easy solution to this problem?
Hey josikrop1,
Please try the following in Quick CSS under Enfold->General Styling:
.av-logo-container {
max-width: 100%;
padding-left: 0;
}
Best regards,
Rikard
Thank you, it works, but still too far right. Would like to put it on the left border. In the mobile version, nothing changed.
I tried
padding-left: -10;
but this doesn’t work.
Hi,
You could try adding a negative margin to the logo:
a.av-contains-svg {
margin-left: -20px;
}
Best regards,
Rikard
This is not a good solution in my case, but thank you for your input.