Title and logo issue

Hi

1 - I seem to have this issue with my title going into my logo and not sure how to fix it.
2 - My logo in my fixed header and on mobile is really small?

  1. Maybe give the title more margin-top.
  2. We can’t see the mobile view, but the logo looks small enough that it should not need to shrink, much.
1 Like

I went through your website. I think you have fixed the first issue that you’ve mentioned. Regarding the second one, to make your logo appear bigger:

Add height property with desired value to header as in
@media only screen and (max-width: 1000px)
header {
height: 130px;
}

and then add height property with desired value to header .q_logo img.mobile as in
@media only screen and (max-width: 1000px)
header .q_logo img.mobile {
height: 140%;
}

Hope this helps.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.