Tagged: header
I have a responsive site that is ok when in desktop mode.
When the width goes below 767 px, it all goes haywire.
1. The bottom part of the LOGO disappears into the orange bar (menu)
2. Its position shifted from its original location from the desktop view.
What are the changes I need to make?
Currently it is :
@media only screen and (max-width: 767px) {
.responsive .logo img {
height: 33px!important;
width: 120px!important; }
}
Hi nigellim68!
Please add following code to Quick CSS and adjust as needed
@media only screen and (max-width: 767px) {
.responsive #header_main .container {
height: 130px!important;
}}
Cheers!
Yigit
Thanks, Yigit. It works!