Helix Ultimate Multi Rows Header - Question | JoomShaper

Helix Ultimate Multi Rows Header

MH

Matt Hunt

Helix Framework 6 months ago

How can I adjust the width of the logo when using the Multi Rows Predefined Header? I've got a rather wide but short logo image to use, but the template is squeezing/distorting it.

0
12 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 6 months ago #135644

Hi

Thanks for contacting us. Could you please give me your site URL and also screenshot of your issue? So that I can check.

-Regards.

0
MH
Matt Hunt
Accepted Answer
6 months ago #135727

Hi, The template isn't live yet, but the url is https://ccofmaine.com Here is a screenshot with what the logo should look like on the side https://ccofmaine.com/images/Screenshot_2023-10-31_070606.png

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 5 months ago #136500

Is this solved now?

0
MH
Matt Hunt
Accepted Answer
5 months ago #136516

The client changed thier mind, so I don't need the anser for this site. I would like to know how to address it in the future though. If possible

0
MH
Matt Hunt
Accepted Answer
4 months ago #143750

I'd like to see if we could figure this out, please. I've another client that I would like to use the multi-row header with, but it again has a wide image/logo for use on the top row. The predefined header however is squeezing it down considerably. Please see the image "Vassalboro Sanitary District". That image should be 50x850.

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 4 months ago #143776

You can use custom CSS for adjusting the logo. You can follow this blog below:

https://www.joomshaper.com/blog/which-line-of-css-i-have-to-edit-code-inspector-in-action

0
Pavel
Pavel
Accepted Answer
4 months ago #143774

Hi. This can be solved through CSS only.

.logo-image {
    height: auto !important; 
}

The width depend on the width of the Logo column.

Just to let you know. Logo settings in the template are completely suitable for SVG responsive image type only. Unfortunately, this is not universal. For any other types of images like SVG fixed size, png, jpg, gif, additional CSS coding may be required.

0
MH
Matt Hunt
Accepted Answer
4 months ago #143822

That just made it smaller, but it is no longer distorted. How do I adjust the width of the logo column?

0
Pavel
Pavel
Accepted Answer
4 months ago #143845

Hi. If you use predefined Header, then via CSS

Something like

#sp-logo {
    width: 300px;
}
0
MH
Matt Hunt
Accepted Answer
4 months ago #143859

Thanks, I also had to include margin:auto; to get the logo to center properly.

0
MH
Matt Hunt
Accepted Answer
4 months ago #143870

Sorry to bother you again. It is looking perfect on the desktop, but on mobile the logo is pushed down on the Menu line and is squished again. Any chance there is css to keep that from happening?

0
Pavel
Pavel
Accepted Answer
3 months ago #143884

Hi. Use media queries to change elements for different screens.

Here is all Bootstrap 5 media queries. Always place it at the very bottom of the CSS document.

/*Breakpoints*/
/* Desktop First */
@media (max-width: 1399.98px) {}
@media (max-width: 1199.98px) {}
@media (max-width: 991.98px) {}
@media (max-width: 767.98px) {}
@media (max-width: 575.98px) {}
/* Mobile First */
@media (min-width: 576px) {}
@media (min-width: 768px) {}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}
@media (min-width: 1400px) {}

Example

@media (max-width: 767.98px) {
    #sp-logo {
        width: 100%;
    }
}
0