Forum Replies Created

Viewing 30 posts - 1,891 through 1,920 (of 82,614 total)
  • Author
    Posts
  • in reply to: Footer Columns Issues #1366896

    Hi Jas,

    Thanks for contacting us!

    Could you please share your login link in private content field as well? Can we temporarily de-activate active plugins for testing purposes?

    Best regards,
    Yigit

    in reply to: Description & title in masonry element move to the left #1366895

    Hi Eva,

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #top .av-fixed-size #av-masonry-1-item-33326.av-masonry-entry.av-masonry-item-no-image .av-inner-masonry-content-pos {
      text-align: left;
    }
    

    Best regards,
    Yigit

    Hi,

    Please go to Enfold theme options > Advanced Styling, edit “Menu Links in overlay/slide out” and change font color as needed :)

    Regards,
    Yigit

    in reply to: Bug on Masonry Galery #1366883

    Hi,

    You are welcome, Eva. Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

    in reply to: style sheet #1366643

    Hi,

    It seems like you have successfully installed Enfold 5.1.2 :)

    Do you need further assistance on this thread?

    Best regards,
    Yigit

    in reply to: Custom Elements (Delete & Rename) #1366642

    Hi,

    Which version are you using? If not the latest 5.1.2, please firstly update the theme – https://kriesi.at/documentation/enfold/theme-update/

    Best regards,
    Yigit

    in reply to: Underline Links #1366641

    Hi,

    My bad. Please use following code instead of the one I posted earlier

    
    #top #main a {
      text-decoration: underline;
    }
    

    Best regards,
    Yigit

    in reply to: Host Web Font yourself … some info #1366580

    Hi,

    I still can see predefined font-weight on your website. Have you uploaded the font after applying the changes? Also, please disable CSS file merging and compression temporarily and clear cache.

    Regards,
    Yigit

    in reply to: Underline Links #1366576

    Hey Samuel,

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #top #wrap_all a {
      text-decoration: underline;
    }
    

    Best regards,
    Yigit

    in reply to: Custom Elements (Delete & Rename) #1366575

    Hey Samuel,

    Thanks for contacting us!

    To edit your Custom Elements, please go to Custom Elements tab and click “Edit Custom Elements” button.

    To delete them, hover on the element you would like to delete and click on “X”

    To rename them, edit the custom element, go to Customize tab and click “Edit Name And Tooltip” button.

    You can find screenshots here – https://imgur.com/a/Htxbh6q :)

    Best regards,
    Yigit

    in reply to: Host Web Font yourself … some info #1366573

    Hi,

    You can replace it with following to comment it out so it is easier to undo the changes :)

    
    /* $css .= ” font-weight: {$info[‘weight’]};\r\n”; */
    

    Cheers!
    Yigit

    • This reply was modified 3 years, 2 months ago by Yigit.
    in reply to: style sheet #1366572

    Hi,

    Thanks for contacting us!

    Could you please make sure that you are only uploading installable theme files only? You can find instructions here – https://kriesi.at/documentation/enfold/install-enfold-theme/

    If you would like us to install the theme for you, please create temporary admin logins and post them here privately :)

    Regards,
    Yigit

    in reply to: Problems with Hamburger Menu Enhold Theme #1366570

    Hi Marko,

    Thanks for contacting us!

    You are currently using an old version of Enfold. Updating the theme should fix the issue.

    Please refer to this post – https://kriesi.at/documentation/enfold/theme-update/ and update Enfold to the latest version 5.1.2 :)

    Regards,
    Yigit

    in reply to: Host Web Font yourself … some info #1366569

    Hey!


    @optiion
    Could you please check out this post – https://kriesi.at/support/topic/host-web-font-yourself-some-info/#post-1366564? Please apply the changes and then upload the new variable font.

    Best regards,
    Yigit

    in reply to: Host Web Font yourself … some info #1366564

    Hi,

    It seems to be related to predefined font-weights. When I comment out following line in /framework/php/font-management/class-avia-type-fonts.php file on line 1085, variable fonts work on my end

    
    $css .= "     font-weight: {$info['weight']};\r\n";
    

    Though, I did not do any testing and I am not sure if that breaks anything :)

    Best regards,
    Yigit

    in reply to: Host Web Font yourself … some info #1366559

    Hey Alwin,

    Enfold’s font uploader does not support variable fonts at the moment. Our devs said that they will look into it. We will post the updates here :)

    In the meantime, if you would like to use a work around, following works for me:
    – Download variable font from Google
    – Upload it on your server
    – Add following code to Enfold theme options > General Styling > Quick CSS

    
    @font-face { 
         font-family: 'Mulish';
         src:    url('/uploads/avia_fonts/type_fonts/mullish/Mulish-VariableFont_wght.ttf') format('truetype');
    }
    

    – Set font family using CSS

    Regards,
    Yigit

    in reply to: Host Web Font yourself … some info #1366555

    Hi,

    Please see private content field below :)

    Best regards,
    Yigit

    in reply to: Mystery Box Has Returned! #1366545

    Hi,

    Could you please clear your mobile browser cache as well? I cannot reproduce the issue any longer on my iphone. I attached a screenshot in private content field below :)

    Best regards,
    Yigit

    in reply to: Bug on Masonry Galery #1366542

    Hi,

    1- As soon as we hear back from our devs.

    2- Please add following codes to Quick CSS

    
    /* Reverse blur on hover */
    #top .av-hover-overlay-bluronhover .av-masonry-entry .av-masonry-image-container {
      -webkit-filter: blur(10px);
      filter: blur(10px);
    }
    #top .av-hover-overlay-bluronhover .av-masonry-entry:hover .av-masonry-image-container {
      -webkit-filter: blur(0px);
      filter: blur(0px);
    }
    
    /* Reverse grayscale on hover */
    #top .av-hover-overlay-grayscale .av-masonry-entry .av-masonry-image-container {
      -webkit-filter: grayscale(0);
      filter: grayscale(0);
    }
    #top .av-hover-overlay-grayscale .av-masonry-entry:hover .av-masonry-image-container {
      -webkit-filter: grayscale(1);
      filter: grayscale(1);
    }
    
    /* Reverse fade out on hover*/
    #top .av-hover-overlay-fade_out .av-masonry-entry .av-masonry-image-container {
      opacity: 0.2;
    }
    #top .av-hover-overlay-fade_out .av-masonry-entry:hover .av-masonry-image-container {
      opacity: 1.0;
    } 
    

    Best regards,
    Yigit

    in reply to: Theme issue in PHP 8.0 #1366530

    Hi Rob,

    I’m glad to hear that the site is working fine!

    You can enable debugging mode in WP by editing your wp-config.php file – https://wordpress.org/support/article/debugging-in-wordpress/ then check out which line in which file is causing the error. That is exactly what I did :)

    Let us know if you have any other questions and enjoy the rest of your day!

    Best regards,
    Yigit

    in reply to: Adjust gallery picture to full page content #1366518

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

    in reply to: Mystery Box Has Returned! #1366407

    Hi,

    I deleted the only broken image I found on the page though I can still reproduce the issue on my iphone. Could you please clear the cache on your server and check if that helped? :)

    Cheers!
    Yigit

    in reply to: Adjust gallery picture to full page content #1366406

    Hi,

    Please add following code to bottom of functions.php file of your child theme – https://kriesi.at/documentation/enfold/child-theme/

    
    add_filter("avf_alb_lightbox_image_size", function($size, $context) {
        $size = "full";
        return $size;
    }, 10, 2);
    

    Best regards,
    Yigit

    in reply to: Enfold theme settings #1366397

    Hi,

    You are welcome! Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

    in reply to: Enfold theme settings #1366395

    Hey,

    Button gets highlighted on reload or when you navigate to other pages and then back to theme options page, not only when you make changes :)

    Regards,
    Yigit

    in reply to: Bug on Masonry Galery #1366391

    Hi Eva,

    We have forwarded your request to our devs and shared this thread as reference. We will update you here :)

    Best regards,
    Yigit

    in reply to: Title + Description of masonry element alignment #1366383

    Hi Eva,

    We are glad that Ismael could help!

    Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

    in reply to: Enfold theme settings #1366380

    Hi,

    Thanks for contacting us!

    Dynamic CSS file is updated whenever you press the button. If you would not like to update anything on the theme options, you can simply ignore that it is highlighted :)

    Best regards,
    Yigit

    in reply to: Inline search menu bug on Windows only #1366377

    Hi Richard,

    Thanks for contacting us!

    Do they have a screencast or a screenshot where we can see the issue?

    I will ask my teammates to check the website on Windows :)

    Best regards,
    Yigit

    in reply to: searchfield in menu #1366376

    Hi

    Could you please create temporary admin logins and post them here privately so we can look into it? Please post FTP logins as well in case theme editor is hidden on WP dashboard :)

    Best regards,
    Yigit

Viewing 30 posts - 1,891 through 1,920 (of 82,614 total)