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?
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?
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.