Logo Cut Off At The Top On Smartphone - Question | JoomShaper

Logo Cut Off At The Top On Smartphone

SE

Sven Engelke

Helix Framework 1 week ago

Hello!

I am currently having an issue with the Helix template: while I can adjust the logo size for smartphones using custom CSS, the top of the logo gets cut off. What can I do?

Many thanks!

Regards, sven

0
11 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 week ago #232249

Hi,

Thanks for contacting us. Could you please give me your site URL and also a screenshot of your issue?

-Regards.

0
SE
Sven Engelke
Accepted Answer
1 week ago #232250

Hello!

I just managed to get it working on my phone. Now I'm having trouble with landscape mode and tablets. The logo ends up being tiny. I'm stuck there.

See hidden Content for URL etc.

Thank you.

Regards, sven

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 week ago #232308

Hi,

Could you please check your site URL? I cant access on that.

0
SE
Sven Engelke
Accepted Answer
1 week ago #232319

Hello,

Please accept my apologies. There was a typo in the URL. I have posted the correct URL in the protected area.

Many thanks!

Regards, Sven

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 5 days ago #232408

Hi,

Use this CSS in your custom.css file

@media (max-width: 992px) {
    .logo-image {
        height: 250px !important;
    }
}
0
SE
Sven Engelke
Accepted Answer
4 days ago #232457

Hello!

I implemented it, but unfortunately, it isn't working. Everything is fine on the smartphone and the PC. It's causing problems on the tablet.

Regards, Sven

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 4 days ago #232473

Hi

Please use this CSS in your custom.css file

.logo-image-phone {
    height: 250px !important;
}

You have used this CSS and set height 30px that's why it shows small. Please remove that CSS and make it 250px.

0
SE
Sven Engelke
Accepted Answer
4 days ago #232478

Hello,

That isn't in the custom CSS at all.

The following is in the custom CSS:

#sp-header {
    background: rgba (0,0,0,0);
}
#sp-header {
   position: absolute;
}


#sp-header.header-sticky{
   background: white;
}

.burger-icon > span {
    background-color: #ffffff !important;
}

.offcanvas-menu .offcanvas-inner ul.menu > li a, 
.offcanvas-menu .offcanvas-inner ul.menu > li span { 
    color: #ffffff; 
}
@media (max-width: 767px) {
    #sp-header, .burger-menu {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .logo-image {
        max-height: 100% !important;
        object-fit: contain;
    }
}

@media (max-width: 991px) and (orientation: landscape) {
    .logo-image img, .sp-default-logo {
        height:400px !important; /* Erhöhe diesen Wert, bis die Größe passt */
        max-height: 200px !important; 
        width: auto !important;
    }
    #sp-header {
        height: auto !important; /* Verhindert, dass das größere Logo wieder abschneidet */
    }
}

Regards, sven

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 4 days ago #232480

Ok, But now please use this CSS in your main CSS file

.logo-image-phone {
    height: 250px !important;
}
0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 days ago #232542

Hi,

Is this helped?

0
SE
Sven Engelke
Accepted Answer
3 days ago #232549

Hello,

which main CSS file is it?

Surely I should be able to control this via the Helix template. I don't usually write CSS by hand, as I'm not very familiar with it. Where is the main CSS file located? I'm afraid I can't make any progress this way.

Many thanks!

Regards, sven

0