Forum Replies Created

Viewing 30 posts - 17,101 through 17,130 (of 34,221 total)
  • Author
    Posts
  • in reply to: Cannot import Restaurant demo files #1190439

    Hi,
    Sorry for the late reply, when trying to import your demo I received the error

    Failed to load resource: the server responded with a status of 500 ()
    admin-ajax.php

    To work around your server error I uploaded the images to your server and then modified your import file so the images would be installed from your server instead of downgrading from our server, then I uploaded the theme settings file and set your widgets to match the demo and I also set your menu.
    Everything seems correct now, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Table on mobile device #1190416

    Hi,
    Sorry for the late reply, you can try this css:

    @media only screen and (max-width: 767px) { 
    .avia-table td:before {
    	display: none !important;
    }
    }

    If this doesn’t help then please let us know when we can see your site to target the correct sectors for your site.

    Best regards,
    Mike

    in reply to: Weird bullets appeared #1190405

    Hi,
    Sorry for the late reply, on Envato the zip file “all files and documentation” also includes files you don’t need, so please extract it on your desktop and look for the folder “enfold” this is the theme files.
    You can verify the theme version by opening the “style.css” file inside “enfold” and line 4 will tell you the version number.
    2020-03-05-052547
    Then you can rename your current “enfold” folder to “enfold-old” via ftp and them upload the new “enfold” from your desktop to your site.
    If you would like a hand with this then please link to your Envato file via DropBox and include admin login and ftp access in the Private Content area.

    Best regards,
    Mike

    in reply to: Hover Effect open again #1190396

    Hi,
    Sorry for the late reply, so I added the custom class “three_columns” to your css:

    .flex_column.av_one_third.three_columns {
    webkit-transition: -webkit-transform .15s cubic-bezier(.4,0,.2,1);
        transition: -webkit-transform .15s cubic-bezier(.4,0,.2,1);
        transition: transform .15s cubic-bezier(.4,0,.2,1);
        transition: transform .15s cubic-bezier(.4,0,.2,1),
        -webkit-transform .15s cubic-bezier(.4,0,.2,1);
    }
    .flex_column.av_one_third.three_columns:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    then I added the custom class to your columns on your homepage and your portfolio page:
    2020-03-05-050119
    now only the three columns on your homepage and portfolio page grow on hover, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Social Media profiles not showing on mobile #1190391

    Hi,
    Sorry for the late reply, please try going to Enfold Theme Options > Header > Extra Elements > Header Social Icons and choose one of the options to show the social icons in the “top bar”
    Then add this css for it to show on mobile:

    @media only screen and (max-width: 479px) {
    .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block;
    }
    }

    Best regards,
    Mike

    in reply to: Icons are all blocks even with latest update #1190383

    Hi,
    I added this to your custom.css so the font would load from your site and show:

    @font-face {
        font-family: 'entypo-fontello';
       src: url('https://your-site.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff') format('woff2'),
             url('https://your-site.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff2') format('woff'),
             url('https://your-site.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Layerslider and enfold columns overlay #1190088

    Hi,
    Sorry for the late reply, if you want to have this on a few pages you can add a css rule for each page-id with a comma like this:

    #top.page-id-1038 #layer_slider_1,
    #top.page-id-154 #layer_slider_1,
    #top.page-id-138 #layer_slider_1 {
    z-index: 0;
    }

    but if it is for all pages that also have the layerslider then use the class “page” without the “id”
    #top.page #layer_slider_1
    but if it is more complicated we will need to know when you will have this set up so we can figure out the best way to set up the css rules.
    If you don’t want to have the overlap on mobile devices then you can wrap your css in a media query like this:

    @media only screen and (min-width: 768px) { 
    #top.page-id-1038 #layer_slider_1 {
    	z-index: 0;
    }
    #top.page-id-1038 #after_layer_slider_1 > div > div > div > div > div {
    	z-index: 99;
        position: relative;
    }
    }

    Best regards,
    Mike

    in reply to: icons next to social media icons #1190061

    Hi,
    Thanks for the feedback, please try adding two new social icon profiles by following these steps then go to Fontello and upload SVG icon versions of your flags to be converted into the icon font:
    2020-03-04-065932
    Then these will be next to your other social icons and you will be able to add links in the social profiles in the theme options.

    Best regards,
    Mike

    in reply to: How to add icons above menu items ? #1190053

    Hi,
    Sorry for the late reply, I adjusted the height of the sub-menu and the icon and menu title so they are all just about on the same line. It may be down just a little but once all of the menu items have the icon they will look the same.
    Please clear your browser cache and check.
    Here is the css used:

    #menu-item-115 span.av-icon-char::after {
      content: "Accueil";
      font-size: 15px !important;
      display: block;
      line-height: 40px;
        top: 100px !important;
        position: absolute;
    }
    #menu-item-115 > a {
    	height: 215px;
        line-height: 215px;
    }
    #menu-item-115 > a > span.avia-menu-text > span {
        line-height: 215px;
    }

    Best regards,
    Mike

    in reply to: Change bacground color of sidebar #1190033

    Hi,
    Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #main > div.main_color.container_wrap_first.container_wrap.sidebar_left > div {
    	    background-color: gray;
    }
    #main > div.main_color.container_wrap_first.container_wrap.sidebar_left > div > main {
    	background-color: #fff !important;
    }

    After applying the css, Please clear your browser cache and check the url in the Private Content area.

    Best regards,
    Mike

    in reply to: Header is disappearing #1190024

    Hi,
    Sorry for the late reply and thanks for the video, I believe what you are asking is to have the header disappear on scroll down and then show on scrolling up like Rolex.com – correct?
    We don’t have a built-in way to do this but this script has worked for others:
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function show_header_scroll_down(){
      ?>
      <script>
    ( function( $ ) {
    
        'use strict';
    
        var $window       = $( window );
        var lastScrollTop = 0;
        var $header       = $( '#header_main' );
        var headerBottom  = $header.position().top + $header.outerHeight( true );
    
        $window.scroll( function() {
                var windowTop  = $window.scrollTop();
    
                // Add custom sticky class 
                if ( windowTop >= headerBottom ) {
                    $header.addClass( 'myprefix-maybe-sticky' );
                } else {
                    $header.removeClass( 'myprefix-maybe-sticky' );
                    $header.removeClass( 'myprefix-show' );
                }
    
                // Show/hide
                if ( $header.hasClass( 'myprefix-maybe-sticky' ) ) {
                    if ( windowTop <= headerBottom || windowTop < lastScrollTop ) {
                        $header.addClass( 'myprefix-show' );
                    } else {
                        $header.removeClass( 'myprefix-show' );
                    }
                }
                lastScrollTop = windowTop;
        } );
    } ( jQuery ) );
    </script>
    <?php
    }
    add_action('wp_footer', 'show_header_scroll_down');

    then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .myprefix-maybe-sticky {
    		    position: fixed !important;
    		    top: -100px;
    		    width: 100%;
    		    z-index: 999;
    		    opacity: 0;
    		    background: #fff;
    		    transition: 0.3s all;
    		    box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    		}
    
    		.myprefix-show {
    		    top: 0;
    		    opacity: 1;
    		}

    Please see the video in the Private Content area.
    If this doesn’t work for you it’s probably because you have a gtag script error Uncaught SyntaxError: Invalid or unexpected token please include an admin login so we can adjust.

    Best regards,
    Mike

    in reply to: Gallery layout edit #1190004

    Hi,
    Sorry for the late reply, looking at your gallery in the middle of your homepage with the “london eye” I believe what you would like to do is have the gallery image’s white border turn the red on hover. So please remove this css:

    #top div .avia-gallery {
        background-color: red;
    }

    and try this instead:

    #top.home div .avia-gallery .avia-gallery-big:hover {
        background-color: red;
    }
    #top.home .avia-gallery .avia-gallery-thumb a img:hover{
    	background-color: red;
    }

    Expected results, large image on hover:
    2020-03-04-045452
    small image on hover:
    2020-03-04-045552
    Is this what you had in mind?

    Best regards,
    Mike

    in reply to: Demo Images Missing After Importing #1189989

    Hi,
    Thanks for the link, but your site seems to be down right now, please check.

    Best regards,
    Mike

    in reply to: hover on column background image, floating button #1189749

    Hi,
    To remove your empty menu area on your homepage we can hide the ID and adjust the height with this css:

    #top.home #header_main_alternate {
    	display: none !important;
    }
    .html_header_top.html_header_topbar_active.html_header_sticky.html_large.html_bottom_nav_header #top.home #main {
        padding-top: 158px !important; 
    }

    To change the image of “nordic” on hover, please try this css:

    #top.home .flex_column.av_one_half.nordic:hover {
      background: url(https://[see-below]/wp-content/uploads/2014/12/f-G-Nepal-blue-diamond.jpg) !important; 
      background-repeat: no-repeat !important; 
      background-size: cover !important; 
      background-position: 50% 50% !important; 
    }

    please change the domain “[see-below]” in the css above with the domain in the Private Content area, or use your own image url.

    Best regards,
    Mike

    in reply to: grid column failure #1189454

    Hi,
    Thank you for the screenshots, I first looked at one of your pages that was meant to have two columns but only showed one full-width, link in the Private Content area. Your columns are created by a grid row, but your grid row only has one cell which should never be.
    2020-03-02-074231
    when I tried to adjust the size of the cells I got this error:
    2020-03-02-074427
    so I added another row using the option at the bottom of the grid row:
    2020-03-02-075651
    and then I was able to adjust the size of the cells to ensure there are two cells:
    2020-03-02-074549
    Now your page has two columns, and you can add something to the right side cell.
    I assume that you are using “templates” to create your pages and one of them with the grid rows are corrupt
    2020-03-02-080217
    I also see that you have the WPBakery Page Builder plugin activate, this can cause errors and I recommend disabling the plugin.

    Best regards,
    Mike

    in reply to: New social media logo – beatport #1189422

    Hi,
    Thank you for the feedback, I’m not able to login to investigate at the normal login url: /wp-admin/ I just get a blank screen.
    Is your login different or are you blocking some countries?

    Best regards,
    Mike

    in reply to: CSS changes in the mobile menu #1189419

    Hi,
    Thank you for the feedback, so it looks like those two lines of code were for the desktop menu, on mobile they are making the menu items very large. So I have added #avia-menu to the code so it will show for desktop and not for mobile.

    #top #header_main > .container .main_menu ul#avia-menu:first-child > li > a {
        line-height: 155px !important;
    }
    #top .header-scrolled #header_main > .container .main_menu ul#avia-menu:first-child > li > a {
        line-height: 60px !important;
    }

    It is activate now, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Layerslider and enfold columns overlay #1189409

    Hi,
    Thanks for the test page, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-1038 #layer_slider_1 {
    	z-index: 0;
    }
    #top.page-id-1038 #after_layer_slider_1 > div > div > div > div > div {
    	z-index: 99;
        position: relative;
    }

    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: icons next to social media icons #1189402

    Hi,
    Is this going to be for a language plugin, often they have language flags, which one are you using?
    If not where will they be linking to?

    Best regards,
    Mike

    in reply to: hover on column background image, floating button #1189285

    Hi,
    Thank you for your feedback, so for the 4 images on your home page that are also links you can add this css to make them white on hover, I used rgba(255, 255, 255, .8) so it’s 80% white, but you can change the last number to make it more or less white.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home .flex_column.av_one_half.avia-link-column-hover:hover:before {
      content:"";
      display: block;
      height: 100%;
      position: absolute;
      visibility: visible !important; 
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, .8)!important; 
    }

    After applying the css, Please clear your browser cache and check.

    The reason your floating button’s z-index is not on top of all of your elements is because of the stacking order of the page, that is since your button is at the top of the page elements later are still stacked on top. To correct please move your button down to above the footer, your css will still place it in it’s fixed position and it will be on top of the elements.
    I tested this with jQuery and it works, if you want to try the jQuery I tested with then add this code to the end of your functions.php file in Appearance > Editor:

    
    function custom_script(){
      ?>
      <script>
    (function($) {
      $(document).ready(function(){
         $('.avia-button-wrap.avia-button-right.floating').detach().insertBefore('#footer');
      });
     })(jQuery);
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    you will need to keep your button css in place.

    Best regards,
    Mike

    in reply to: Hover Effect open again #1189282

    Hi,
    Sorry for the late reply, you can limit the effect to only one or some of your columns, to do this you will need to add a custom class to the one you want it to work on. I tried searching your pages but didn’t find the custom class “three_columns”
    If you can include admin login in the Private Content area and tell us which one you want the effect for we can assist and explain what we did should you want to do it again in the future.

    Best regards,
    Mike

    in reply to: Breadcrumb in page content #1189279

    Hi,
    Glad that Nikko could help you out, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Change slide-entry-title entry-title from h3 to h2 #1189277

    Hi,
    Glad to hear Guenni could help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Removing Video Progress Bar #1189275

    Hi,
    Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-2412 span.mejs-time-total.mejs-time-slider {
    	display: none !important;
    }

    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Pictures on mobile don't work #1189273

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Cannot import Restaurant demo files #1189272

    Hey chefstevendellima,
    Thank you for the login, are you trying to install the
    Enfold Classic Restaurant Demo
    or
    Enfold One Page Restaurant Demo?
    Are you going to be using woocommerce? if so this should be installed first.
    Which Webhost are you using and is it a “managed wordpress” host?
    I ask because these typically have more restrictions.
    please ask your webhost to check the PHP settings to see if the secure options are activated.
    If “allow_url_fopen, “allow_url_include” and “register_globals” are “off” ask to have these “on” and temporarily disable modsec so the demo files can be imported from our .at domain.
    Before we import the demo again we will have to reset your site, so any content you now have will be lost.
    Please also include FTP access so if the server continues block the import we can manually upload the images.

    Best regards,
    Mike

    in reply to: Table on mobile device #1189269

    Hi,
    We can assist with css to remove the “UID” of each cell for mobile, but we are going to need to see the table. Please link to the page.

    Best regards,
    Mike

    in reply to: Adjust the width of each block #1189265

    Hey Dundee,
    Thanks for the links, so on your ski page I see you have a full width slider, then 3 smaller images, then a full width gray text block.
    So I make the 3 image section have a max-width 80% with margin auto to center them. In between the images and the slider was a white area so I hide it to look better, but feel free to adjust to suit.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #homepage-section-overlay {
    	max-width: 80%;
        margin: auto;
    }
    #after_full_slider_1 {
        display: none;
    }

    After applying the css, Please clear your browser cache and check.
    Please see the screenshot in Private Content area of the Expected results.

    Best regards,
    Mike

    in reply to: icons next to social media icons #1189263

    Hey Charlotte,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia-menu.av-main-nav-wrap.av_menu_icon_beside {
    	padding-right: 0 !important; 
    	margin-right: 0 !important; 
    }
    .social_bookmarks.icon_count_2:after {
    	content: url(https://img.icons8.com/officexs/16/000000/great-britain.png) url(https://img.icons8.com/officexs/16/000000/switzerland.png);
    }
    

    Best regards,
    Mike

    in reply to: Pictures on mobile don't work #1189258

    Hi,
    Thank you for the link and screenshots, I see that you are using the grid row and the images are backgrounds of the cells, so what you need to do is add a “white space” element to the cells with enough padding to force the height you wish for mobile. Right now the cells think they are empty so they are collapsing down.

    Best regards,
    Mike

Viewing 30 posts - 17,101 through 17,130 (of 34,221 total)