Forum Replies Created
-
AuthorPosts
-
it is the unchanged “creative-studio” installation, this is the only thing i changed in style.css.
@media only screen and (max-width: 989px) {
#advanced_menu_toggle, #advanced_menu_hide {
display: none !important;
}
.responsive.html_mobile_menu_tablet .main_menu .avia-menu {
display: block !important;
}
}with !important; too
no I tried the updated code
so the best would be, not to show any mobile-menu-version at all
or other way round
only the normal menu for all the view-port situationsok, super. Thank you.
… no, below 768 pixel the “animated Hamburger Menu” menu disappears …
Maybe we just have to change the breakpoint?
December 5, 2016 at 7:07 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #720615on checked this on an Android Phone and there it seems to be ok.
But not on any apple phone or pad …December 5, 2016 at 7:03 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #720610hm, I told you that this happens with you demo site
http://kriesi.at/themedemo/?theme=enfold-overview -> creative studio.… maybe you never a had a look on this with an iPhone or iPad?
… i want to display the “animated Hamburger Menu” or the “normal menu” all the time (see picture marked red)
not only in the normal version of the website, so in the mobile version of the website too.I tried this too,
.av-hamburger-box {
width: 20px !important;
height: 12px !important;
}but this does only have effect on the width of div in which the hamburger-menu-symbol stays.
Not on the symbol itself.
With the close symbol it is working, that’s ok.Hi Yigit, thank you, if I write:
@media only screen and (max-width: 767px) {
#advanced_menu_toggle, #advanced_menu_hide {
display: none !important;
}
}the mobile menu stays invisible, that´s fine.
But how do I tell the NICE “Hamburger Menu” (the animated one) to stay visible from min-width: 0px ?
The other lines you wrote, don’t cause that …December 1, 2016 at 5:58 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #719360Hi Andy,
please have a look at your own demo-installation – there the error is the same
e.g. in the Demo »Creative Studio«
http://kriesi.at/themedemo/?theme=enfold-overviewScreenshot iPhone:
http://www.c33m3s.de/wp_enfold/IMG_3294.PNGok, this works, thank you!
November 29, 2016 at 4:45 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #718335… we already use the latest version and this does not change anything.
Or do you refer to the next upcoming latest version?November 28, 2016 at 1:20 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #717718… no, it is not this situation.
It appears AFTER choosing some menu-point from your situation (http://i.imgur.com/PaX8O4S.png). THEN scroll up to the top of the page and there on the right side the menu still is visible, beside the content (http://www.c33m3s.de/wp_hpp-schramm/IMG_3192.jpg) …It is the same on every browser, mobile device etc. I got here …
November 25, 2016 at 3:43 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #716897… even if i use your own Web-demo from your website
on any mobile device (here a screenshot from an iPhone).http://www.c33m3s.de/wp_hpp-schramm/IMG_3192.jpg
Greetings
November 25, 2016 at 3:35 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #716888Hello Andy,
the issue stays, even in v 3.8. Nothing has changed.
After using the Mobile Donut-Menu on a one-pager with #anchor-Links,
the mobile-menu keeps staying in the upper right corner of the page …http://www.c33m3s.de/wp_hpp-schramm/wp-content/uploads/mobile_menu_issue/mobile_menu_issue_05.png
Maybe now there is some kind of solution?
Kind regards, Jochen
September 13, 2016 at 3:33 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #685860Hi Andy, there is the latest version running, 371
Nevertheless you recommended the same for version 352 -> (your answer above)Andy wrote:
Hi, now I see what you mean.
Please update the theme to the latest version (v3.6.1.). That should fix any issues you are currently experiencing :)ok, thank you, this works
September 8, 2016 at 12:35 pm in reply to: Fixed mobile menu / #anchor links / mobile menu doesn't fadeout completely #683662below the Login data
must be something here in the avia.js, the image counter appears!!
// Ligthbox activation
// ——————————————————————————————-…
…
…image: {
titleSrc: function(item){
var title = item.el.attr(‘title’);
if(!title) title = item.el.find(‘img’).attr(‘title’);
if(!title) title = item.el.parent().next(‘.wp-caption-text’).html();
if(typeof title == “undefined”) return “”;
return title;
}
},gallery: {
// delegate: options.autolinkElements,
tPrev: ”,
tNext: ”,
tCounter: ‘%curr% / %total%’,
enabled: true,
preload: [1,1] // Will preload 1 – before current, and 1 after the current image
},ahh ok,
we needed to build our gallery with single images. Maybe it is because of that?»How can we activate the captions in a lightbox coming out of the single images« is the question then.
Regards, Jochen
… no, I tried 352, 361, but this does not change anything – no Idea, the captions don’t appear in the lightbox.
But they did, I know because we wrote a css for them.I tried without plugIns, too.
Without any extra css.But no …
below the Link for the site. Do you have any idea?
this can be closed
Hi & thank you! -> these are the working lines …
add_filter(‘avia_post_nav_settings’,’avia_same_category_filter’, 10, 1);
function avia_same_category_filter($settings)
{
$settings[‘same_category’] = true;
return $settings;
}… yes, in this case it‘s ok – it is just to prevent the editors from being »too creative«
after creating the file avia-builder_editors.css in the folder avia-template-builder/assets/css/ in this case
ok, in the template-builder.class.php
near these two lines:#css
wp_enqueue_style( ‘avia-modal-style’ , $this->paths[‘assetsURL’].’css/avia-modal.css’);
wp_enqueue_style( ‘avia-builder-style’ , $this->paths[‘assetsURL’].’css/avia-builder.css’);you can write/add something like
if(current_user_can(‘editor’)) wp_enqueue_style( ‘avia-builder-style_editors’ , $this->paths[‘assetsURL’].’css/avia-builder_editors.css’);
Then it works …
and now a script to load the css above just for editors would be the solution,
something in the direction of the one below…// get the the role object
$role_object = get_role( ‘editor’ );
// add $cap capability to this role object
$role_object->add_cap( ‘edit_theme_options’ ); -
AuthorPosts