Archived topic
how do I drop logo in header widget
3 replies · Started by Julian on January 8, 2018
Viewing posts 1–4 of 4
Hello,
If you check out the website url below, you can see that my logo on the right hand side (embedded via header widget) is floating ... I'd like it to drop down so that it sits seamlessly on the menu bar. Please could you suggest what css is necessary to make this happen?
Thanks
Julian
Birmingham, UK
Hi there,
You could try something like this:
.inside-header {
position: relative;
box-sizing: border-box;
}
@media (min-width: 769px) {
.header-widget {
position: absolute;
right: 0;
bottom: 0;
}
.header-widget img {
vertical-align: bottom;
}
}
Sorted...
Much appreciated !
Julian
Awesome :)
This archived topic is closed to new replies.