-
AuthorPosts
-
April 15, 2020 at 11:13 pm #1204202
Hi,
i found this code snippet on the formus, but i’d like to have the burger menu on the right hand side of the icons.@media only screen and (max-width:479px) { .responsive #top #wrap_all #header_main .social_bookmarks { display: block !important; } .responsive #top .av-logo-container .avia-menu.av_menu_icon_beside { padding-right: 25px; margin-right: 25px; border-right-width: 1px; border-right-style: solid; } .responsive #top #wrap_all .main_menu { right: 0 !important; } }
Could you please provide a snippet where the Bruger menu appears on the right hand side of the icons?
Thanks in advance!April 16, 2020 at 3:51 am #1204220Hey coeval,
Please provide a link to the site/page in question so we can look into this issue further.
Best regards,
Jordan ShannonApril 16, 2020 at 12:34 pm #1204395April 16, 2020 at 5:38 pm #1204477Hi,
I’m not seeing any icons near the burger menu. Can you screenshot?
Best regards,
Jordan ShannonApril 16, 2020 at 10:06 pm #1204561April 16, 2020 at 10:29 pm #1204564Hi Coeval,
Please add following code to Quick CSS
.avia-menu.av_menu_icon_beside { float: right; padding-right: 0; margin-right: 0; }
Best regards,
YigitApril 20, 2020 at 11:25 pm #1205597Hi Yigit!
i’ve the following code in my custom.css
@media only screen and (max-width:720px) { .responsive #top #wrap_all #header_main .social_bookmarks { display: block !important; } .responsive #top .av-logo-container .avia-menu.av_menu_icon_beside { padding-right: 25px; margin-right: 25px; border-right-width: 1px; border-right-style: solid; } .responsive #top #wrap_all .main_menu { right: 0 !important; } } .avia-menu.av_menu_icon_beside { float: right; padding-right: 0; margin-right: 0; } Desktop Styles
But it now looks like in the screenshot.
April 21, 2020 at 8:35 am #1205685Hi,
I cannot see the screenshot as it says it’s hotlinked :)
Please try changing the code to following one
@media only screen and (max-width:720px) { .responsive #top #wrap_all #header_main .social_bookmarks { display: block !important; } .responsive #top .av-logo-container .avia-menu.av_menu_icon_beside { padding-right: 25px; margin-right: 25px; border-right-width: 1px; border-right-style: solid; } .responsive #top #wrap_all .main_menu { right: 0 !important; } } .avia-menu.av_menu_icon_beside { float: right; padding-right: 0; margin-right: 0; } /* Desktop Styles */
If that does not fix it, please post a screenshot using imgur.com or Dropbox public folder. You can check your CSS for errors using this website – http://csslint.net/
Best regards,
YigitApril 21, 2020 at 11:30 pm #1205974Hi Yigit!
undortunately that doesn’t help.Here is a screenshot uploaded to imgur:
- This reply was modified 4 years, 7 months ago by coeval.
April 22, 2020 at 5:52 am #1206027Hi,
Did you add the code to the very top of quick css so it runs first? Also, clear the cache a few times over.
Best regards,
Jordan ShannonApril 22, 2020 at 11:21 pm #1206393Hi Jordan,
I just checked. It makes no difference, if I use custom css or quick css.April 23, 2020 at 8:27 am #1206462Hi,
Could you please create temporary admin logins and post them here privately so we can look into it? There might be an error in your custom CSS code.
Best regards,
YigitApril 23, 2020 at 9:06 pm #1206687This reply has been marked as private.April 24, 2020 at 11:46 am #1206781Hi,
Please change following code in custom.css file
@media only screen and (max-width: 720px) { .responsive #top #wrap_all #header_main .social_bookmarks { display: block !important; }}
To following one
@media only screen and (max-width: 720px) { .responsive #top #wrap_all #header_main .main_menu .social_bookmarks { display: block !important; }}
Please make sure to flush cache as well. If that does not help, please share WP admin logins please.
Best regards,
YigitApril 24, 2020 at 11:31 pm #1206993Hi,
it looks better but now i still have the menu icon on the left. I’d like to have it on the right:April 27, 2020 at 9:42 am #1207460Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
.responsive #top .av-logo-container .avia-menu.av_menu_icon_beside { float: right; margin-right: 0; padding-right: 0; }
Best regards,
YigitJune 16, 2020 at 6:05 pm #1223157Thanks. It looks better now, but the separator is on the wrong side.
June 16, 2020 at 6:09 pm #1223160June 17, 2020 at 1:09 pm #1223359Hi,
Please add following code to Quick CSS as well
@media only screen and (max-width: 480px) { .responsive #top .av-logo-container .avia-menu.av_menu_icon_beside { border-right: none; border-left: 1px solid currentColor; }}
If you would like to remove it, you can simply use
.responsive #top .av-logo-container .avia-menu.av_menu_icon_beside { border: none; }
Best regards,
Yigit -
AuthorPosts
- You must be logged in to reply to this topic.