-
AuthorPosts
-
October 1, 2024 at 8:40 am #1468147
Is there a way we can make the menu items span the whole menu area as shown and add a line underneath (also shown).
Your help (as always) is appreciated.
October 1, 2024 at 9:43 am #1468153Hey whdsolutions,
Please try the following in Quick CSS under Enfold->General Styling:
.html_header_top.html_main_nav_header #top .av_menu_left .main_menu, .html_header_top.html_main_nav_header #top .av_menu_left .main_menu .av-main-nav-wrap { width: 100%; } #top #header .av-main-nav > li { width: 25%; }
Best regards,
RikardOctober 1, 2024 at 12:00 pm #1468162October 2, 2024 at 4:24 am #1468236Hi,
Thank you for the update.
Please try to include this css code to create a border below the menu items:
#top #avia-menu:after { content: ""; width: 90%; height: 2px; display: block; position: absolute; background: white; top: 140px; } #top #avia-menu { margin-top: -19px; }
Best regards,
IsmaelOctober 2, 2024 at 9:28 am #1468253Cheers
- This reply was modified 1 week, 5 days ago by whdsolutions.
October 2, 2024 at 9:37 am #1468256Doing these changes has messed-up the mobile menu and the line is still showing on mobile – see the image here https://ibb.co/V965Psp
October 2, 2024 at 10:06 am #1468257Also, on the page https://2024-liptonrogers-com.stackstaging.com/projects/ how can we make the whole image be clickable instead of just the text in the portfolio grid?
October 3, 2024 at 4:48 am #1468325Hi,
Thank you for the update.
Doing these changes has messed-up the mobile menu and the line is still showing on mobile
Try to move the css code inside a css media query. Please replace the previous code with this:
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ #top #avia-menu:after { content: ""; width: 90%; height: 2px; display: block; position: absolute; background: white; top: 140px; } #top #avia-menu { margin-top: -19px; } }
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelOctober 3, 2024 at 8:31 am #1468334THank you.
How to get the burger menu back to the right hand side?
October 3, 2024 at 10:46 am #1468345Hi,
Please try this CSS as well:
li.av-burger-menu-main { float: right; }
Best regards,
RikardOctober 3, 2024 at 11:29 am #1468350Any news on:
Also, on the page https://2024-liptonrogers-com.stackstaging.com/projects/ how can we make the whole image be clickable instead of just the text in the portfolio grid?October 4, 2024 at 3:40 am #1468390Hi,
Please start a new thread for any additional questions. Long threads can go off-topic and are harder to support and search. Keeping each thread focused helps everyone find answers more easily.
Best regards,
IsmaelOctober 8, 2024 at 9:46 am #1468630October 8, 2024 at 10:20 am #1468637Hi,
The issue with the mobile menu occurs because of this css code:
#top #header_main > .container, #top #header_main > .container .main_menu .av-main-nav > li > a, #top #header_main #menu-item-shop .cart_dropdown_link { line-height: 244px !important; }
Please try wrapping the rule in a css media query so that it only affects the desktop view:
@media only screen and (min-width: 989px) { /* Add your Desktop Styles here */ #top #header_main>.container, #top #header_main>.container .main_menu .av-main-nav>li>a, #top #header_main #menu-item-shop .cart_dropdown_link { line-height: 244px !important; } }
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.