In portrait mode, the magnifying glass overlaps my logo (a rectangle since it has my name/business name).
Would it be possible to put it in the top header area where I have the phone number? On desktop, the phone number is on the left side, and social media on the right. . . .but on mobile, it’s just the phone number, centered. Hoping I can put the search up in that header area?
Thanks!
Jon
I found how to shrink the burger menu lines, and that helped, but it still looks a bit cramped so I’d like to see how to works in header if code already exists. If it’s not already posted someplace, that’s ok, the smaller burger menu will suffice.
Jon
Hi,
It’s not easily possible to move the search icon but you could resize the logo based on the screen size – i.e. this css code:
@media only screen and (max-width: 989px) and (min-width: 768px){
.responsive #wrap_all .logo a, .responsive #wrap_all .logo img {
max-width: 200px;
}
}
would resize the logo to 200px on screen resolutions between 989 and 768px. You can also add a margin-top to the code to center the logo if necessary:
@media only screen and (max-width: 989px) and (min-width: 768px){
.responsive #wrap_all .logo a, .responsive #wrap_all .logo img {
max-width: 200px;
}
.responsive #wrap_all .logo img {
margin-top: 30px;
}
}
Best regards,
Peter
Hey thanks Peter! i’ll play with those.
Guessing drop those in the Quick CSS box in General Styling?
Best
Jon
That looks perfect. Y’all can close this thread.
J