Put The Logo In The Center Of Header is Impossible? - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Put The Logo In The Center Of Header is Impossible?

hughes

hughes

Helix Framework 3 years ago

How can I do for this?

0
7 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #76682

Hi,

Yes its possible. You can do it via custom CSS. Use this custom CSS

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

-Regards.

0
hughes
hughes
Accepted Answer
3 years ago #76686

Thanks... and for the same problem on menu? how to remove the three horizontal lines menu symbol so that it appears only in the mobile version?

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #76707

You have to do it from here, you have to choose only MegaMenu

https://prnt.sc/alvT9Lt9nXDY

0
hughes
hughes
Accepted Answer
3 years ago #76708

PERFECT!! and for put in center the menu?

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #76719

Thanks.

For your last question could you please explain it more?

0
hughes
hughes
Accepted Answer
3 years ago #76720

Like for Logo I need in another row put the menu in the center of the row.

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #76722

Use this CSS for that

.d-flex {
    display: flex!important;
    justify-content: center;
    align-items: center;
}
0