Viewing 30 results - 84,061 through 84,090 (of 142,602 total)
  • Author
    Search Results
  • #748090

    Thank you, Andy!!

    Here’s my code to do this. all in one piece just in case somebody wants to use it. I added a bit less margin for the search button as it was a bit under the hamburger menu. Tried to add a bit more space between them but this is as far as I can go. Suggestions are always welcome!! :)

    Warmly,

    Havi

    /*add search to mobile menu*/
    @media only screen and (max-width: 767px) {
    .main_menu .avia-menu, #header_main_alternate {
    display: block !important;
    }
    .av-main-nav > li { display: none; }
    li#menu-item-search {
    display: block!important;
    margin-top: -86px;
    right: -27px;
    }
    .responsive .main_menu {
    float: right;
    }}
    @media only screen and (max-width: 767px) {
    li#menu-item-search>a {
    font-size: 28px!important;
    }
    nav.main_menu { float: right; margin-right: -3.1%; margin-top: 2%; }}
    @media only screen and (max-width: 767px) {
    #menu-item-burger {
    display: none !important;
    }}

    #748089
    veneziano
    Participant

    Hi

    Hi

    I am in the middle of designing my new website with this wonderful theme, almost done just coming into a few little issues im trying to clear up…

    if you click on this link, it my company profile, as my theme is black and white.. when you view this page on a computer its perfect. when you view it on a mobile phone all the writing is on top of the pictures and its dark so cant read it. Is there a piece of code i can put in to make all the writing white when viewed on a mobile only?

    Thanks

    Stephen

    #748086

    In reply to: A bit of CSS required

    Hi Andy!!

    I created a gorgeous way to have the categories on top on the Shop page (without using the ALB)! I added a Masonry element with selected images for each category and it looks divine!!

    Check it out! http://bodasyweddings.com/shop/

    I may test conversion down the road with your suggestion as well.

    Thank you!!! :) (and thank you for the most magnificent theme ever!!)

    Warmly,

    Havi

    #748085
    nelis013
    Participant

    Hi there,

    I want to add Call now button (https://nl.wordpress.org/plugins/call-now-button/) plugin to my site.

    Problem is that the green call button doenst show, because I first need to press on the menu bar to see it. So I wanted to change the menu bar to something that doenst open in a ‘new window’ at the right. So I found a forum thread with this CSS code to solve the problem were the menu opens in a ‘new window’.

    #mobile-advanced{
    width:100%;
    right:0;
    position: absolute;
    z-index: 1000;
    top:-100%;
    padding:89px 0;
    overflow: hidden;
    border-left-style: solid;
    border-left-width: 1px;
    margin:0 0 0 -2px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    display:none;
    }

    .csstransforms3d #mobile-advanced{
    -webkit-transform: scale3d(1);
    -moz-transform: scale3d(1);
    transform: scale3d(1);
    }

    .show_mobile_menu #mobile-advanced{
    -webkit-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    }

    .csstransforms3d .show_mobile_menu #mobile-advanced{
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }

    I added this code and now the call button is working fine. The problem is that the menu item isnt working anymore.

    Someone got a solution for this problem?

    PS its only visible on mobile

    #748055

    Hi,

    Please change the code to following one

    #header .widget {
        padding-top: 0;
        position: absolute;
        z-index: 999;
    }
    #header #text-6 { 
        right: -40px;
        top: -30px;
        transform: translate(-50%);
    }
    #header #text-7 { 
        right: -10px;
        top: -20px;
        transform: translate(-50%);
    }

    Best regards,
    Yigit

    #748050

    I was experiencing a strange issue with the visual editor and thought it was my hosting provider. I was using Chrome browser and the problem was on ALL of my computers and laptops logged into the same Chrome account. The temporary solution was to log in via “incognito mode” in Chrome, and then everything worked great. The real solution though was to delete all browsing history (until the beginning of time as the prompt says) and then to DELETE COOKIES which I never had done.

    Deleting the cookies solved the issue….. you might also want to try that, and try logging in with a different browser (Firefox etc) to see if you are running into an issue similar to mine.

    Hope this helps.

    BeeCee
    Participant

    Hi,

    I had this problem some months ago on an older site of mine with an older version of ENFOLD.

    Now I have a new site (not live yet) and the newest ENFOLD 3.8.5 and this issue occurs again,
    although I have added the code snippet, that @Vinay suggested there in my old forum topic:
    https://kriesi.at/support/topic/masonry-gallery-first-image-place-is-empty-when-i-set-a-fixed-heightwidth/

    Vinay suggested this for the functions.php:

    function gallery_remove_firstImg(){
    ?>
    <script>
    jQuery(window).load(function(){
         	jQuery(".av-masonry-container").find('.isotope-item.av-masonry-item-no-image').eq(0).remove();
    });
    </script>
    <?php
    }
    add_action('wp_head', 'gallery_remove_firstImg');

    I added thie code snippet into my “Code Snippets” plugin, then checked the page with Firebug and then there is indeed no code with “.av-masonry-item-no-image”, but the first place is still empty, sometimes not, if you reload the page several times.

    My custom CSS:

    
    .fotogalerie .av-masonry-entry {
        height: 175px;
        width: 175px; 
    }
    .fotogalerie .av-masonry-outerimage-container {
    	margin: 7px;
    }
    .fotogalerie .av-inner-masonry {
    	border: 1px solid #e1e1e1 !important;
    }
    .fotogalerie .av-masonry-image-container {
        border: 1px solid #ffffff !important;
        margin: 0 !important;
        padding: 2px !important;
    }
    .fotogalerie .av-masonry-outerimage-container {
    	    border: 6px solid #eaeaea !important;
    }

    Masonry Gallery settings – and there the 6 (!!!) columns are ignored, instead I have 7 columns (= 7 images in a row).

    Is Vinay’s code still valid with newest ENFOLD?
    Or what could I else do, so that this first “place” in Masonry Gallery element is not empty?

    —————————————————————————————————-
    E D I T:
    —————————————————————————————————-
    maybe it could have something to do with my square CSS:

    .fotogalerie .av-masonry-entry {
        height: 175px;
        width: 175px; 
    }

    because when I delete this CSS style, then it seems to work, even when I reload the page several times.
    Or do I need to change anywhere else something, to have the masonry gallery images in square format?
    Thanks.

    • This topic was modified 8 years, 11 months ago by BeeCee.
    #748041
    lessismoredesign
    Participant

    Hi,

    I’ve tried to remove the logo, main menu area and the menu toggle with codes as shown in other topics. Though somehow it doesn’t work.

    I used the following code:
    .page-id-3735 .a#advanced_menu_toggle { display: none !important; }
    .page-id-3735 #header { display: none; }

    and I tried to vary as well. Still doesn’t work.

    So the purpose is to remove the entire menu area on 1 page. The menu is already hidden, but I want that entire part to be hidden so the content will be shown higher.

    #748033

    Hi

    It seems like you are using Advanced Layout Builder to create your blog posts. If that is the case, please add comments element under Content Elements tab of ALB to the bottom of your posts. If that is not the case, please click “Screen option” on the top right corner and check “discussion” and scroll below your post and make sure discussion is enabled

    Regards,
    Yigit

    #748008

    In reply to: Enfold Support

    Hi!

    Replied you here – https://kriesi.at/support/topic/issues-with-blog-2/
    Let us continue there :)

    Best regards,
    Yigit

    #747997
    sahlen
    Participant

    Building a new site for a company hiring out boats. They want to use Planyo booking system – http://planyo.com.
    I´ve done my first try to integrate one of Planyos widgets (nervous what will happen with all the others).
    I´ve placed the code for the ”Availability search box” in a code block (first page http://new.gotakanacharter.se ) and in a text widget ( http://new.gotakanalcharter.se/planera-din-resa/ ).
    In the first case the calender doesn´t appear, in the text widget case there are some ugly text boxes witch also appears on a booking page:

    The code that I have placed both in the code box and in the widget i as below (yes, it´s possible to change the css i planyos system, but I don´t know how….)

    <script type=’text/javascript’ src=’https://www.planyo.com/utils.js’></script&gt;
    <script type=’text/javascript’ src=’https://www.planyo.com/wrappers.js’></script&gt;

    <link rel=’stylesheet’ href=’https://www.planyo.com/schemes/?calendar=24466&detect_mobile=auto&sel=scheme_css&#8217; type=’text/css’ />
    <div id=’planyo_search_widget’ class=’planyo ‘>
    <style type=’text/css’>
    #search_form label {display:block;float:none;width:100%}
    form#search_form li.planyo_static_help {margin-left:0px;}
    </style>
    <form id=’box_search_form’ name=’search_form’ class=’left title_inside multi_column’ action=’http://new.gotakanalcharter.se/batar/&#8217; method=’get’><fieldset >

      <input type=’hidden’ value=”24466″ id=’calendar’ name=’calendar’ /><input type=’hidden’ value=”1″ id=’submitted’ name=’submitted’ /><input type=’hidden’ value=”http://new.gotakanalcharter.se/batar/&#8221; id=’feedback_url’ name=’feedback_url’ /> <div style=’position:absolute;visibility:hidden;z-index:1000;’ class=’picker_dropdown title_inside’ id=’box_start_datecal’ onmousedown=’var e=arguments[0] || window.event;e.stopPropagation();’ onclick=’var e=arguments[0] || window.event;e.stopPropagation();’ ></div>
      <script type=’text/javascript’>
      js_set_event(document.getElementById(‘box_start_datecal’), ‘click’, ‘js_dummy’,false);
      document.first_weekday=1;
      </script>
      <script type=’text/javascript’>
      document.new_scheme=1;
      document.s_prev = “tidigare”;
      document.s_next = “nästa”;
      document.s_today = “idag”;
      document.s_day = “dag”;
      document.s_days = “dagar”;
      document.s_week = “vecka”;
      document.s_weeks = “veckor”;
      document.s_weekday = “veckodag”;
      document.s_month = “månad”;
      document.s_single_res = “single resource”;
      document.s_weekdays_short = eval(‘[\”M\”, \”T\”, \”O\”, \”T\”, \”F\”, \”L\”, \”S\”]’);
      document.s_weekdays_med = eval(‘[\”Mån\”, \”Tis\”, \”Ons\”, \”Tor\”, \”Fre\”, \”Lör\”, \”Sön\”]’);
      document.s_weekdays_long = [“Måndag”,”Tisdag”,”Onsdag”,”Torsdag”,”Fredag”,”Lördag”,”Söndag”];
      document.s_months_short = eval(‘[\”Jan\”, \”Feb\”, \”Mar\”, \”Apr\”, \”Maj\”, \”Jun\”, \”Jul\”, \”Aug\”, \”Sep\”, \”Okt\”, \”Nov\”, \”Dec\”]’);
      document.s_months_long = eval(‘[\”Januari\”, \”Februari\”, \”Mars\”, \”April\”, \”Maj\”, \”Juni\”, \”Juli\”, \”Augusti\”, \”September\”, \”Oktober\”, \”November\”, \”December\”]’);
      document.s_all = “Alla”;
      document.s_showall = “Show all”;
      document.s_areav = “är tillgängliga.”;
      document.s_clickres = “Klicka för att boka.”;
      document.s_partav = “Endast tillgänglig för uthyrning mindre än ett dygn. Klicka på datumet ovan för detaljer.”;
      document.s_outof = “utanför”;
      document.s_unav = “Upptagen”;
      document.s_av = “Ledig”;
      document.s_vacation = “Vacations”;
      document.s_allday = “All day”;
      document.s_day_view = “dag”;
      document.s_month_view = “månad”;
      document.s_more = “mer”;
      if (!document.date_format) document.date_format = “d M Y”;

      js_set_event(document, ‘mousedown’, ‘js_close_calendar’,false);

      </script>
      <li id=’row_box_start_date’ class=’fld_single’><div id=’par_box_start_date’ class=’with-status-border float-label-parent float-label-text-parent par_box_start_date’><label id=’lab_box_start_date’ style=’visibility:hidden’ for=’box_start_date’>Datum*</label><input type=’text’ id=’box_start_date’ name=’box_start_date’ value=”” onfocus=”js_close_calendar();document.active_float_date=’box_start_date’;js_show_calendar(‘box_start_date’,’planyo_float_date_changed();’);” onmousedown=”var e=arguments[0] || window.event;e.stopPropagation();” onclick=”var e=arguments[0] || window.event;e.stopPropagation();” placeholder=”Datum*” onfocus=”update_float_label_focus(‘box_start_date’,1);” onblur=”update_float_label_focus(‘box_start_date’,0);” onkeyup=”update_float_label(‘box_start_date’);” /></div><script type=’text/javascript’>
      function planyo_float_date_changed() {
      if(document.active_float_date)update_float_label(document.active_float_date);
      if(window.planyo_dates_changed)planyo_dates_changed(); else if(window.on_planyo_date_picked) on_planyo_date_picked();
      }

      function update_float_label(item_name) {
      var item=document.getElementById(item_name);
      var label=document.getElementById(‘lab_’+item_name);
      if(item && label) {
      label.style.visibility = item.value && item.value.length>0 ? ‘visible’ : ‘hidden’;
      }
      }

      function update_float_label_focus(item_name,f) {
      var item=document.getElementById(‘par_’+item_name);
      if(item) {
      item.style.borderColor = f ? ‘#3D83A8’ : ‘#c0c0c0′;
      }
      if(item_name==’phone’||item_name==’mobile_number_param’) {
      var countryit=(item_name==’phone’?’phone_country_param’:’mobile_country_param’);
      if(document.getElementById(countryit) && document.getElementById(countryit).value==’-1′)
      float_country_clicked(countryit);
      }
      }

      </script>
      <div class=’float-date-icon’ onmousedown=”js_close_calendar();var e=arguments[0] || window.event;e.stopPropagation();” onclick=”var e=arguments[0] || window.event;e.stopPropagation();” onmouseup=”document.active_float_date=’box_start_date’;js_show_calendar(‘box_start_date’,’planyo_float_date_changed();’);” id=”box_start_datecalref”></div><div style=’clear:both’></div><li id=’row_rental_time_value’ class=’fld_single’><div id=’par_rental_time_value’ class=’with-status-border float-label-parent float-label-select-parent’><label for=’rental_time_value’>Hyrestyp</label><select name=’rental_time_value’ id=’box_rental_time_value’ onfocus=”update_float_label_focus(‘rental_time_value’,1);” onblur=”update_float_label_focus(‘rental_time_value’,0);” onkeyup=”update_float_label(‘rental_time_value’);”>
      <option selected=’selected’ value=”168″ >One week</option>
      <option value=”336″ >Two weeks </option>
      </select>
      </div><input type=’hidden’ value=”name” id=’sort_fields’ name=’sort_fields’ /><input type=’hidden’ value=”name” id=’sort’ name=’sort’ /><input type=’hidden’ value=”1″ id=’is_night’ name=’is_night’ /><input type=’hidden’ value=”1440″ id=’granulation’ name=’granulation’ /><input type=’hidden’ value=”search” id=’mode’ name=’mode’ /><input type=’hidden’ value=”0″ id=’presentation_mode’ name=’presentation_mode’ />

    </fieldset><div id=’res_form_buttons’ >
    <label for=’submit_button’> </label><input class=’button’ id=’box_submit_button’ name=’submit_button’ type=’submit’ value=”Sök” /> </div>
    <input type=’hidden’ value=’true’ id=’submitted_field’ name=’submitted’ />Planyo online booking system</form>
    </div>

    #747995

    Hello!
    I’m sorry, topic not closed yet!
    I just noticed that when you roll over my Portofilio items (submenu) if the mouse comes from above no problem (and the items get hoghlighted) but if you approach from the bottom NONE of the submenu items can be clicked properly and link is always on the second main menu item (Visual diary).
    Could you please check it out and tell me how to make it work?
    Thank you!

    #747980

    Hi,

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

    @media only screen and (max-width: 480px) {
    #top .social_bookmarks li {
        width: 25px;
    }}
    

    Best regards,
    Yigit

    #747968

    Hey!

    You can alternatively refer to this post – https://kriesi.at/support/topic/search-bar-4/#post-669950

    Best regards,
    Yigit

    #747966

    Thanks for that Rikard! The top menu is now fixed, but the footer menu still disappears and doesn’t wrap to new lines when the window is resized. See here: http://www.digitalprosperity.com .

    Any help?

    Thanks,
    – James.

    #747952
    condonpb
    Participant

    If you go to http://www.pswebdesign.com the nav menu on loading is in white text and also the contact details. Some of my customers have complained that this is hard to read is there anyway I can darken these two sections whilst keeping them transparent prior to scrolling down see screenshot

    Octopus4444
    Participant

    Hi team,
    I’ve reading this Josue solution on this topic :
    https://kriesi.at/support/topic/adding-to-sub-menu/#post-597301

    It’s work fine in avia.js but it’s possible this solution in functions.php file?

    Thanks for your help!

    Marc – Winsiders

    #747913

    Hello Andy,

    I’m sorry for the belated reply.

    parallax scrolling on mobile is deactivated by default

    That is some useful information! So the bug is caused by the parallax effect on desktop, which can’t be reproduced on mobile.
    How can I allow parallax scrolling on desktop but disabled it on mobile? I know it is disabled by default, but right now it is still causing problems for my mobile.

    If the first one is working for you, then with media queries it should work fine, too.

    Unfortunately, it does not. I provided the LogIns for you Mods. Feel free to quickly test yourself. It does not work.

    I feel it would be best for you to work together with a freelance developer on those issues, especially if you want to customize things

    I don’t want any customisation necessarily. I just want the mobile page to either not display as a very long list because of only one icon is being shown at a time, or hide columns on mobile which are unnecessary because the content (parallel effect picture) isn’t being shown anyway.
    I should be able to set these within Enfold, but it does not work.

    BG,
    SonicTonic

    #747902

    Hi,

    To make the logo center menu below in mobile version:

    1. Hide the mobile menu and center the logo using the below CSS.

    @media only screen and (max-width: 767px) {
    #advanced_menu_toggle, #advanced_menu_hide  {
       display: none !important;
    }
    .logo a > img {
        left: 50%;
        transform: translateX(-50%);
    }
    }
    
    /*Show only in mobile or desktop*/
    
    @media only screen and (min-width: 769px) {
    .only_mobile { display: none !important; }}
    
    @media only screen and (max-width: 768px) {
    .only_desktop { display: none !important; }}
    
    

    2. Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    3. Create a header widget area by applying the code provided in this link to functions.php http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    4. Please enable debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    This let’s you view the shortcode for all the page elements.

    5. Create a new page for testing purpose and add a fullwidth submenu element. We need to show the fullwidth submenu only in mobile to do so please add the class name “only_mobile” in custom css class name option.

    7. Copy the shortcode which should look similar to the below code to Appearance > Header .

    [av_submenu which_menu='center' menu='' position='center' color='main_color' sticky='true' mobile='disabled' mobile_submenu='']
    [av_submenu_item title='Menu Item 1']
    [av_submenu_item title='Menu Item 2']
    [/av_submenu]

    Best regards,
    Vinay

    #747895

    Hi,

    Please try the solution in this thread: https://kriesi.at/support/topic/mobile-search-bar/

    Best regards,
    Nikko

    Hey!

    We added the following css code in the Quick CSS field. If possible, please move it in the style.css file so that it will be applied on all languages

    @media only screen and (max-width: 1024px) {
      .responsive #top #wrap_all #header {
        position: relative;
        width: 100%;
        float: none;
        height: auto;
        margin: 0 !important;
        opacity: 1;
      }
    
      .responsive #top #wrap_all .container {
        width: 85%;
        max-width: 85%;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        float: none;
      }
    
      .responsive #top .logo {
        position: static;
        display: table;
        height: 80px !important;
        float: none;
        padding: 0;
        border: none;
        width: 80%;
      }
    
      .responsive .logo a {
        display: table-cell;
        vertical-align: middle;
      }
    
      .responsive .logo img {
        height: auto !important;
        width: auto;
        max-width: 100%;
        margin: 0;
        display: block;
        max-height: 80px;
      }
    
      .responsive #header_main .inner-container, 
      .responsive .main_menu {
        position: static;
      }
    
      .main_menu .avia-menu, #header_main_alternate, 
      .fallback_menu {
        display: none;
      }
    
      .responsive #top #main {
        padding-top: 0 !important;
        margin: 0;
      }
    
      .container #advanced_menu_toggle, 
      #advanced_menu_hide {
        display: block;
      }
    
      .responsive.html_header_sidebar #top #header .social_bookmarks {
        display: none;
      }
    }

    Regards,
    Ismael

    #747883
    missholst
    Participant

    Hi

    I would like to have a fixed background image and place my text in 50% opacity color sections on top, so that you can still see the image behind. Is that possible? I have found a homepage (see link below) how has it, and it is something like that i want.

    Please let me know how to :)

    Hi Rikard,

    Thanks for that. Both bits of CSS work.
    I would like to know why it’s happening? What element or configuration of elements is causing this so I can avoid it in the future.

    I just noticed that it also seems to affect my socket styling on desktop too. Like if you look on the other pages the socket social icons are more spread out. Weird.

    Thanks.

    #747871

    In reply to: custom header

    Hi!

    Please add this css code to adjust the menu padding which will also fix the background.

    #top #header li.current-menu-item > a .avia-menu-text {
        padding: 9px;
    }

    Best regards,
    Ismael

    #747870

    Hey webzillauser!

    Thank you for using Enfold.

    1.) That is the default template of the single product pages. The sidebar is actually below the featured image container. If you want a left or right sidebar, please do the following modification.

    // https://kriesi.at/support/topic/sidebar-rechts-single-page/#post-580220

    2.) The category title is inside the banner.

    Best regards,
    Ismael

    #747854

    Hi Rikard,
    you can close the topic, everything worked great.
    Thank you!
    Alessandra

    #747834

    Hey!

    Alright. We adjusted the css media query to 1248px:

    @media only screen and (max-width: 1248px) {
    	#menu-item-search-mobile {
        	     display: block !important;
    	}
            
            #top #searchform {
                 text-align: center;
    	}
    
           #top #menu-item-search-mobile #searchform > div {
                 display: inline-block;
            }
    }

    Where did you add the following code?

    @media only screen and (min-width: 767px) {
    #top #searchform {
        position: absolute;
        top: 90px;
    }
    }

    Please remove that one.

    Best regards,
    Ismael

    #747822

    Hi,

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

    Best regards,
    Rikard

    #747813

    I switched from Go Daddy due to the nonstop 502 and 503 errors… they started last November and if you read their support forums for Managed WordPress, they have continued since then. I was pulling my hair out. This is not a theme issue. I switched to WP Engine and am happy with them but there are many hosting providers that are much better than Go Daddy. Make the switch away from GD, you won’t regret it. I wish someone had given me this advice 2 years ago! Good luck.

    #747793

    In reply to: link settings showing

    Hi Thomas,

    Great, glad you got it working and sorry for the problems. We should hopefully have a fix released for this as soon as possible. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

Viewing 30 results - 84,061 through 84,090 (of 142,602 total)