Viewing 30 results - 76,921 through 76,950 (of 142,939 total)
  • Author
    Search Results
  • #820977

    Hi,

    Thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #820974

    Hey, the problem is that in the new mobile menu, elements does not have their own classes, even if they have one assigned in the “Appearance > Menus” WordPress settings, before the update they worked perfectly.
    So if the elements (pages) are inside of the mobile menu, I can’t do anything from the Advanced layout editor.
    I don’t know if I explained it well.
    If I’m not able to give each element of the mobile menu a class, how can I give them a class in order to hide the elements?

    Or, is there some way that I can have a different menus for mobile and desktop?

    Thank you.

    EDIT:
    It is not necessary to be a class, but how can I give those elements any attribute to identify them and hide the elements I want with css?
    I had an idea of using XFN field in menus settings, because when is used, that attribute appears on mobile menu elements. Even if that works, I don’t know if I should do it in that way. I will wait if you have any better ideas.

    EDIT 2:
    In the case I was not clear in something, I was doing this exact same thing before the update (http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/)
    I just found it in your documentation, but after the update, this doesn’t work anymore in the mobile menu, you should consider that…

    • This reply was modified 8 years, 9 months ago by geertroggeman.
    #820973

    Hi,

    Thanks for the feedback, we’ll keep the thread open in case you should have any further problems on the topic.

    Best regards,
    Rikard

    #820972

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #820971

    Hi,

    Great, thanks for letting us know. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #820970

    Hi,

    Thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #820965

    Hi Poohne,

    Did you check your settings in the Menu Items for Desktop option under Enfold->Main Menu?

    If that is not the problem then please post admin login details in private so that we can have a closer look.

    Best regards,
    Rikard

    #820953

    Topic: Grid rwo problem

    in forum Enfold
    marko7
    Participant

    Hi Guys.
    I have added a grid row with 4 cells but they are not appearing?
    http://www.kangaroosinthetoppaddock.com.au

    #820947

    Hi,

    Great, glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    Hey Anja,

    You should be able to set that with the Menu Items for Desktop option under Enfold->Main Menu, could you try that out please?

    Best regards,
    Rikard

    gentlemansgazette
    Participant

    Hi there,

    For some reason, on mobile I constantly see a menu on top of all pages.
    This has only appeared ever since I updated to 4.1.1 from the previous non 4.1 version.

    My website is http://www.gentlemansgazette.com. Please have a look and tell me how I can fix it, thanks.

    #820936

    Hi,

    Please try this in Quick CSS :

    @media only screen and (max-width: 767px) {
    #header .widget {
        left: 10%;
        top: 0;
    }
    }

    You will probably have to adjust the values a bit to achieve your desired layout.

    Best regards,
    Rikard

    #820934

    Hi,

    Glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #820931
    navindesigns
    Participant

    HI,

    I am trying to figure out the right dimension/setup for a top banner on all my pages

    On this page -http://109.199.127.133/~beaut891/ohsnapselfie.com/packages/ – On mobile it looks perfect but on desktop it is very tall and not wide enough. Is there proper way to address this for desktop and mobile so both looks good?

    Should I be using another element and not fullwidth easy slider for just the static image? Please let me know.

    Thanks

    #820902
    draig
    Participant

    I run a site for a non-profit which has lots of volunteers who are creating/editing content. I would like to simplify things for them as frequent mistakes happen.

    We only use the default editor for Posts. So for Posts, I would like to remove (hide) the Advance Layout Editor button so there is not even the option for volunteers to make that mistake.

    For Pages and Portfolio Items, we only use the Advanced Layout Editor. With these, I would like to have a new Page or Portfolio Item default to the Advanced Layout Editor and not show the button to switch to Default Editor.

    From this thread I found the following function that makes the Advanced Editor the default:

    // make avia default on new posts
    // use #postdivrich_wrap for editor only, #post-body for (pretty much) everything
    // see https://kriesi.at/support/topic/always-open-advanced-layout-builder/#post-452117
    add_action('admin_head-post-new.php', 'trigger_alb_on_load');
    function trigger_alb_on_load(){
    	echo '<style>#post-body { display: none; }</style>';
    	?>
    	<script>		
    		(function($){
    			$(window).load(function() {
    				$("#avia-builder-button").trigger('click');
    				$("#post-body").css('display', 'inherit');
    			});
    		})(jQuery);
    	</script>
    	<?php
    }

    This works, except I would like it to only work for Pages and Portfolio Items and leave Posts as the regular default editor. Then I need a way to hide the buttons so users cannot switch them. Any help appreciated.

    #820900
    Jillian
    Participant

    Hi,

    I’ve put a fade animation on 3 1/3 boxes. They work perfectly on Desktop, but not on mobile. On mobile the boxes don’t have a animation at all.

    Can you help me?

    #820890

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
        left: 0;
        right: auto;
    }
    .html_header_top #top .av_logo_right .logo img {
        float: right;
    }
    .html_header_top #top .av_logo_right .logo {
        width: 100%;
    }}
    
    

    Best regards,
    Yigit

    #820886
    elmo
    Participant

    Hello,
    I was looking throught the code to find a way to disable the new hamburger menu (somehow, it shows me on both desktop and mobile, and I wanted to get rid of it on both so I just overwrote the pluggable function avia_append_burger_menu() with an empty one in my child theme, if anyone’s interested; IMHO there should be an option to disable it on admin). However, when reading the code I found that these two lines contain a probable typo:
    functions-enfold.php: 117
    functions-enfold.php: 143

    Both are same:
    if ((is_object($args) && $args->theme_location == ‘avia’) || (is_string($args) && $args = “fallback_menu”))

    And the error is that the last statement is $args = “fallback_menu”, while it should be $args == “fallback_menu”. Now it’s an assignment operator and hence always evaluates to true (in if statement).

    • This topic was modified 8 years, 9 months ago by elmo.
    #820885
    forgottensky
    Participant

    Hi,

    my website http://main-audiopro.com is using your template (newest version) and I can say I’m happier than ever!

    This template works perfectly on desktop. But I have a few problems on mobile devices.

    Regarding the header section on mobile devices, I have a few questions:

    1. The header section seems to stay only on the top of the page and does not follow the page when we scroll down further to the content. Could you help me?
    2. The logo in the header section seems a little bit to big for mobile (for desktop it’s perfect). Could you help me on how to make the logo smaller ONLY for mobile?

    Your help is highly appreciated. thank you so much for the great work!!

    Best,
    Indra

    #820879

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .html_header_top.html_logo_center #header_main_alternate .main_menu ul:first-child {
        float: right;
    }
    

    If that does not help, please post a screenshot and show the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here

    Best regards,
    Yigit

    #820868

    In reply to: Header Element

    Hi,

    No problem at all. Once you configure the text css, that should be about it. I will keep this thread open for additional questions on this specific topic.

    Best regards,
    Jordan Shannon

    #820865

    No, it isn’t working on my end. On the attached screenshot, the slider should be in the top/left corner of the page, under the logo. There is an easy slider at the top/left of each of the service pages on this site:

    SCREENSHOT:
    https://www.dropbox.com/s/lh754amklqbgisq/Screenshot%202017-07-13%2016.24.56.png?dl=0

    SOME OF THE AFFECTED PAGES:
    http://donsharphomeimprovements.com/roofing-contractors/
    http://donsharphomeimprovements.com/gutter-installers/
    http://donsharphomeimprovements.com/energy-efficient-window-installers/

    Also, near the bottom of the home page, the testimonial slider is not working either.

    • This reply was modified 8 years, 9 months ago by TracyLove.
    #820862

    In reply to: Header Element

    Hi,

    Add the following to quick css to adjust the icon size.

    .av-hamburger-box{
    width:20px!important;
    }
    
    .av-hamburger.av-hamburger--spin.av-js-hamburger.av-inserted-main-menu.is-active .av-hamburger-inner::after{
        bottom: 0px!important;
    }
    
    .av-hamburger-inner::after {
        bottom: -5px!important;
    }
    
    .av-hamburger-inner::before {
        top: -5px!important;
    }

    Best regards,
    Jordan Shannon

    #820861

    Merhabalar,

    Lutfen assagidaki kodu Enfold theme options > General Styling > Quick CSS alanina ekleyin :)

    @media only screen and (max-width: 1240px) {
    .av-burger-menu-main { display: block!important; }
    #top .av_mobile_menu_tablet .av-main-nav .menu-item {
        display: none!important;
    }}

    Best regards,
    Yigit

    #820854

    In reply to: Icon Menu not working

    Hi Nikko, it was a settings fault by me – sorry. I had in main menu > burger/mobile menu set to Display submenu items on click. I changed it to always … and now it works fine.

    But I have still another css bug in Safari on Mac:
    If I open burger menu with mouse and move mouse down on menu items, they get highlighted. But after leaving item with mouse they get black instead of going back to default background menu color. Test is in menu black, so text can not be read anymore. I found the stage at were this happens:

    I tested on staging site some settings and no plugin was the case on issue, instead it is Enfold. I hadn’t this issue first on staging site, because I had in menu at top first level menu only one item and below few second level items.
    As I changed the main menu in the way, that on top first level three items were setup and below few second level items, then the bug is there.

    HI Basilis, as mentioned, I updated to the latest 4.1.1. But since I found no way to resolve my issue, I reverted back to my backups. When I updated to the latest version of the theme, the issue persisted. The disappearing mobile menu, and stuck burger menu on desktop seems to be affecting a number of users, and I couldn’t find a solution on the other threads as well so I’ve just rolled back with my backups.

    #820826
    bwilbourne
    Participant

    I installed Autoptimize to help increase the site performance. The plugin changed the social icons, and other font icons. Please advise.

    #820824

    Hi,

    Can you try to add this code inside the code given to you by Jordan?

    
    .header-scrolled strong.logo img {
        margin-top: 0 !important;
    }
    

    so it should look like this:

    @media only screen and (min-width: 767px)  {
      strong.logo img {
        margin-top:40px!important;
      }
    
      .header-scrolled strong.logo img {
        margin-top: 0 !important;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    #820807

    In reply to: Mobile menu issues 4.1

    Hi Nikko
    I am already on 4.1.1
    The problem still exists
    It seems to be regarding Mega Menus – something is causing them to become unresponsive to touch. Same problem here: https://kriesi.at/support/topic/mobile-mega-menu-not-working/

    Site logins attached.
    WP-Rocket is disabled.

    Thanks
    Ed

    • This reply was modified 8 years, 9 months ago by Swarez. Reason: Added login details
    #820794

    In reply to: Header configuration

    Actually I managed to find the solution on this forum … and it is possible … and the solution was posted by you … ;-)

    https://kriesi.at/support/topic/how-to-make-logo-overlap-the-header/

    Can you please help me with one more thing … instead of having the resizing logo animation I would like to have the fade in and fade out … how can I achieve this?

    Thank you for your help,
    MD

Viewing 30 results - 76,921 through 76,950 (of 142,939 total)