Unable To Increase Size Of Logo And Header On Mobile - Question | JoomShaper

Unable To Increase Size Of Logo And Header On Mobile

DA

Dina Abramson

Template 1 year ago

Hi, I am unable to increase the size of the logo on MOBILE to 120px and center it between the slider and topbar.

The css I add (even with !important) looks like it works on the inspector, but never takes when saved.

Can you possibly assist with enlarging the logo on mobile as it is unreadable as it is currently.

Thanks. Screenshot of mobile view:

https://awdtest4.com/images/increase-logo-header.png

0
3 Answers
Ariba
Ariba
Accepted Answer
Support Agent 1 year ago #69479

Hello

Thank you for your query.

Unfortunately you have missed extra curly braces for the @media .. part.

Kindly replace this:

@media (max-width: 576px)
.logo-image-phone {
    height: 120px !important;
    margin-top: 20px !important;
}

with this:

@media (max-width: 576px) {
  .logo-image-phone {
      height: 120px !important;
      margin-top: 20px !important;
  }
}
0
DA
Dina Abramson
Accepted Answer
1 year ago #69532

thank you very much.

0
Ariba
Ariba
Accepted Answer
Support Agent 1 year ago #69687

You are most welcome :)

0