-
AuthorPosts
-
January 6, 2015 at 5:55 pm #375754
HI,
i tried this without success:
https://kriesi.at/support/topic/mobile-menu-search-function/
https://kriesi.at/support/topic/search-box-in-mobile-responsive-menu/Please help on santegra.de
January 6, 2015 at 10:49 pm #375885Hey Tobias-B-Conrad!
I added Yigit’s code to your Quick CSS field and it appears to be working fine. If that’s not correct then take a screenshot and highlight what your trying to do so we can get a better idea.
Regards,
ElliottJanuary 6, 2015 at 11:41 pm #375909HI Elliott,
thanks for helping me. search icon is not shown all the time.
I some size it creates a lot of white space below to show the search field.May create a feature request. this would be nice.
i dream of having the search, cart and menu icon on the right side below each other in mobile view.
so the logo is not covered by the icons to much.January 7, 2015 at 7:41 pm #376369Hey!
Go ahead and take a screenshot and highlight exactly what your trying to do so we can get a better idea.
Best regards,
ElliottJanuary 8, 2015 at 1:04 pm #376731now
https://www.dropbox.com/s/elpfay86czchb2p/2015-01-08%2005.36.49.png?dl=0
—
it should be
https://www.dropbox.com/s/palxt9wuoj3zdzk/less-space-and-icons-on-side.jpg?dl=0
cart, menu, search icon should be in one row and space optimiced.thanks
January 8, 2015 at 10:39 pm #377119Hi!
Add this to your custom CSS.
@media only screen and (max-width: 767px) { .main_menu { left: auto !important; position: absolute !important; right: -90px !important; top: -5px !important; } }
And you can move it around with the top and right values.
Best regards,
ElliottJanuary 9, 2015 at 7:39 am #377229Hey Elliott,
I insert this code and got the icon shifting behind the cart- and menu icon.
Above 990px the cart icon is sticked to the right window. http://awesomescreenshot.com/07c45pyr77
Can we leave menu, cart, search sticked to the right side when showing on smaller screens.
So the three icons not cover the logo and not cover each other.
This could be a feature request and discussed in your team please.i insert into child custom css:
/*Add your own styles here:*/
@media only screen and (max-width: 989px) {
.html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate, .responsive #header .main_menu ul, #top #menu-item-search { display: block; }
.av-main-nav li { display: none; }}@media only screen and (max-width: 990px) {
li#menu-item-search a { font-size: 24px!important; }
nav.main_menu { float: right; margin-right: 15%; }}@media only screen and (max-width: 767px) {
.main_menu {
left: auto !important;
position: absolute !important;
right: -90px !important;
top: -5px !important;
}
}January 9, 2015 at 7:29 pm #377558Hey!
Add this.
@media only screen and (max-width: 767px) { #advanced_menu_toggle { position: absolute; right: -30px !important; top: 0 !important; } .cart_dropdown { position: absolute !important; right: -30px !important; top: 70px !important; } }
And play around with the top and right values to move them around.
Best regards,
ElliottJanuary 11, 2015 at 9:05 pm #378034like you can see on https://www.santegra-international.com/ if you smaller the screen search icon i shifting and not fixed.
No search icon/cart between 767px and fullscreen als if i change @media only screen and (max-width: 767px) { to 989pxis there a full version of your CSS? ;-)
my css is looking like this:
@media only screen and (max-width: 989px) {
.html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate, .responsive #header .main_menu ul, #top #menu-item-search { display: block; }
.av-main-nav li { display: none; }}@media only screen and (max-width: 990px) {
li#menu-item-search a { font-size: 24px!important; }
nav.main_menu { float: right; margin-right: 15%; }}@media only screen and (max-width: 989px) {
.main_menu {
left: auto !important;
position: absolute !important;
right: -90px !important;
top: -5px !important;
}
}
@media only screen and (max-width: 989px) {
#advanced_menu_toggle {
position: absolute;
right: -30px !important;
top: 0 !important;
}
.cart_dropdown {
position: absolute !important;
right: -30px !important;
top: 70px !important;
}
}i tried this also which is online at the moment:
Still search icon/cart between 767px and fullscreen als if i change @media only screen and (max-width: 767px) { to 989px/*search icon, cart in mobile view*/
@media only screen and (max-width: 989px) {
#advanced_menu_toggle {
position: absolute;
right: -10px !important;
top: 18px !important;
}
.cart_dropdown {
position: absolute !important;
right: -40px !important;
top: 50px !important;
}
li#menu-item-search a { font-size: 24px!important; }
nav.main_menu {
position: absolute !important;
right: -30px !important;
top: 30px !important;
}
}If possible hand the request over to a fullsolution developer please.
DANKE
January 14, 2015 at 5:26 pm #379552Hey!
It’s because of the custom code your using.
nav.main_menu { float: right; margin-right: 15%; }}
That is not needed at all. It’s going to change the position depending on the screen size.
Regards,
ElliottJanuary 14, 2015 at 6:58 pm #379658HI thanks,
much more logic now.a) why could they be not above each other?
they all:
position: absolute;
right: -10px !important;
—
b) No search icon/cart between 767px and fullscreen als if i change @media only screen and (max-width: 767px) { to 989px
—/*Add your own styles here:*/ /*search icon, cart in mobile view*/ @media only screen and (max-width: 989px) { .html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate, .responsive #header .main_menu ul, #top #menu-item-search { display: block; } .av-main-nav li { display: none; }} @media only screen and (max-width: 989px) { #advanced_menu_toggle { position: absolute; right: -10px !important; top: 18px !important; } .cart_dropdown { position: absolute !important; right: -10px !important; top: 50px !important; } li#menu-item-search a { font-size: 24px!important; } nav.main_menu { position: absolute !important; right: -10px !important; top: 30px !important; } }
January 16, 2015 at 5:07 pm #380874Hey!
1. You can move them up or down with the top value, https://kriesi.at/support/topic/mobile-search-icon-near-the-cart-in-mobile-view/#post-377558.
2. I’m not sure what you mean here. Are you trying to hide the search and cart icons on screen sizes between 767 and 989?
Cheers!
ElliottJanuary 16, 2015 at 6:26 pm #3809642.) the icon does not show up between 767 px and 989 px width.
January 19, 2015 at 5:27 pm #381913Hey!
Then change the code that I posted from this.
@media only screen and (max-width: 767px) {
To this.
@media only screen and (max-width: 989px) {
Regards,
ElliottJanuary 19, 2015 at 5:38 pm #381932already done if you look at the page.
no affect.January 20, 2015 at 6:46 am #382275Hey!
The cart icon is showing up fine. Please try to remove browser cache then reload the page.
Cheers!
IsmaelJanuary 20, 2015 at 11:22 am #382368no search does not show up on smaller screens see screenshot and try on santegra-internationa.com
http://awesomescreenshot.com/040488ze41January 20, 2015 at 2:33 pm #382449Hi!
Please change following code
@media only screen and (max-width: 989px) { .cart_dropdown { position: absolute !important; right: -10px !important; top: 50px !important; }}
to following one
@media only screen and (max-width: 989px) { .cart_dropdown { position: absolute !important; right: 0px !important; top: 50px !important; }}
Best regards,
YigitJanuary 29, 2015 at 9:59 am #387591Feature request: See this solution is nice:
http://awesomescreenshot.com/0d34ak2g51January 29, 2015 at 3:17 pm #387719Hey!
Please post your feature request here – https://kriesi.at/support/enfold-feature-requests/ :)
Regards,
YigitFebruary 23, 2015 at 7:46 pm #400955gentlemen
could anyone tell me where is CSS tool where we can copy and past the codes you are all talking about ?
i cannot remove this cart in my mobile page and dont understand were to past those codes
many tanx
February 24, 2015 at 12:19 pm #401332Hi!
You can add the css codes on Enfold > General Styling > Quick CSS field. Use this:
.cart_dropdown { display: none !important; }
Best regards,
IsmaelMarch 16, 2015 at 1:52 pm #412100ok. Update to verion 3.1 fix the cart icon in mobile view 100%.
Please show the search icon in the same way please.The code i use before the update was:
I deleted this CSS on my site and wait for your new code./*search icon, cart in mobile view*/ @media only screen and (max-width: 989px) { .html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate, .responsive #header .main_menu ul, #top #menu-item-search { display: block; } .av-main-nav li { display: none; }} @media only screen and (max-width: 989px) { #advanced_menu_toggle { position: absolute; right: -10px !important; top: 18px !important; } .cart_dropdown { position: absolute !important; right: -10px !important; top: 50px !important; } li#menu-item-search a { font-size: 24px!important; } nav.main_menu { position: absolute !important; right: -10px !important; top: 30px !important; } }
March 17, 2015 at 5:39 am #412772Hey!
If you don’t mind, please provide a screenshot on how you want the header with the cart icon to look on mobile device. It will greatly help us. Thank you.
Best regards,
IsmaelMarch 17, 2015 at 11:38 am #412862Hey Ismael,
if you don´t mind my request is about the Search Icon.
I provide the screenshot to get directly to the code to show the search icon.
http://awesomescreenshot.com/0af4n6l09dMarch 18, 2015 at 4:24 am #413347Hi!
My bad. Add this to the Quick CSS field:
@media only screen and (max-width: 989px) { .responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet .main_menu .avia-menu ul #menu-item-search { display: block; position: absolute; top: 0; right: 60px; } .responsive.html_mobile_menu_tablet .main_menu .avia-menu ul li{ display: none; }}
Regards,
IsmaelMarch 18, 2015 at 1:33 pm #413597thanks Ismael, it is working good.
March 19, 2015 at 5:45 am #414158August 30, 2016 at 4:11 pm #679540hi i need help with the search icon again please.
it is really bad that it is not an option i can activate.
So please login
activate the search icon under 989 px
align the cart icon
below 500 px the search icon and the cart icon and the menu should be under the logo.
all icons in one line all the time.cachify icon is on the right corner (to empty cache)
i am really up to quite with enfold, because everything had to be coded.
but i this get fixed you save my website from being changed. ;-)September 6, 2016 at 6:33 am #682459Hi,
The search icon is disabled on mobile view because there’s not enough space in the header. If you want, you can add the search form inside the mobile menu. https://kriesi.at/support/topic/search-box-in-header-on-mobile/#post-582862
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.