-
AuthorPosts
-
December 12, 2023 at 11:00 pm #1427914
Hello!
Is it possible to reposition a menu to the center rather than having it prominently aligned to the right, all while ensuring it doesn’t overlap with a logo on smaller screens?
The Quick CSS already contains code for the menu adjustments. Further details are provided in the private content attached.
Thank you!December 13, 2023 at 3:17 am #1427939Hi vantagepointmg,
Please try to add this CSS code:
@media only screen and (min-width:1367px) { #header .main_menu { left: 260px; display: flex; justify-content: center; } }
Hope it helps.
Best regards,
NikkoDecember 20, 2023 at 10:47 pm #1428632Hello,
It looks like there are some mobile issues now.
Screenshot: https://ibb.co/cFPkc8z
Any feedback is appreciated!
~MacKenzie
December 22, 2023 at 12:47 am #1428699Hi MacKenzie,
The link for the screenshot does not seem to show anything.
Can you try to re-upload it?
Also, the code should only affect larger screens like laptop or desktop, does it get fixed if the code is removed?Best regards,
NikkoDecember 29, 2023 at 3:29 pm #1429000Here’s the link to the screenshot: https://drive.google.com/file/d/1_3P8Q54fPKWwh_qchSJgCuyzXzwAwi_p/view?usp=sharing
January 2, 2024 at 11:53 pm #1429153Hi vantagepointmg,
This was the code that was responsible for the size:
.logo img, .logo svg { height:160%; max-height:240px !important }
To fix it, please try adding this CSS code as well:
@media only screen and (max-width:767px) { #top #header_meta { padding-top: 10px; } #top #header_meta .sub_menu .menu-item { margin-bottom: 12px; } #top #header_meta .sub_menu * { font-size: 14px; } #top #header_meta #menu-item-130, #top #header_meta #menu-item-131 { text-indent: -999em; } #top #header_meta #menu-item-130 img, #top #header_meta #menu-item-131 img { position: absolute; top: 0; left: 0; } #top #header .av-burger-menu-main a { max-height: 80px; line-height: 80px !important; } .logo img, .logo svg { max-height: 80px !important; } }
Best regards,
NikkoJanuary 12, 2024 at 4:21 pm #1429919Looks like we’re almost there! Here’s what it’s looking like for me; https://ibb.co/ZSGb6mS
Are there any more improvements that we can make?
January 13, 2024 at 4:01 am #1429957Hi vantagepointmg,
Please try to replace the CSS code I gave with this one:
@media only screen and (max-width:767px) { #top #header_meta { padding-top: 10px; } #top #header_meta .sub_menu .menu-item { margin-bottom: 12px; } #top #header_meta .sub_menu * { font-size: 14px; } #top #header_meta #menu-item-130, #top #header_meta #menu-item-131 { text-indent: -999em; } #top #header_meta #menu-item-130 img, #top #header_meta #menu-item-131 img { position: absolute; top: 0; left: 0; } #top #header .av-burger-menu-main a { max-height: 80px; line-height: 80px !important; } .logo img, .logo svg { max-height: 80px !important; } #top #header_meta .sub_menu #avia2-menu { height: auto; } #header_main { padding-top: 8px; } }
Best regards,
NikkoJanuary 15, 2024 at 3:49 pm #1430167Hello,
Is there any way we can make the social icons closer together? See screenshot: https://ibb.co/Xjqh2m7
January 16, 2024 at 4:54 am #1430194Hi vantagepointmg,
The social icons are close on my end, can you try to add this CSS code and see if it helps:
@media only screen and (max-width:767px) { #avia2-menu { text-align: center; } }
Best regards,
NikkoJanuary 16, 2024 at 3:22 pm #1430712Thanks for that! I checked two different sources, and it was fixed on one but not the other, which I believe is a caching-related issue on my end. Thanks for all of the help, really appreciate it!
January 17, 2024 at 11:54 pm #1431314Hi vantagepointmg,
You’re welcome :)
Just let us know if you still need further assistance.Best regards,
Nikko -
AuthorPosts
- You must be logged in to reply to this topic.