Forum Replies Created

Viewing 30 posts - 2,911 through 2,940 (of 25,536 total)
  • Author
    Posts
  • in reply to: avia layout gone! #1355926

    Hi Lefteris,

    We’re glad that you were able to identify the cause of the issue.
    If there are any issues try to disable JS or CSS minification and/or merging.

    Best regards,
    Nikko

    in reply to: Margin gap in new Parallax template #1355807

    Hi laptophobo,

    Please try to change the #service Color Section’s margin-bottom to -180px and see if this helps.
    Just adjust the value as you see fit.

    Best regards,
    Nikko

    in reply to: Icon effect disappears when removing link #1355805

    Hi HulaSlim,

    I’m glad that Mike could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Post Featured Image #1355804

    Hi Esther,

    Switching back to the parent theme should set the settings back including CSS.
    Have you followed Step 4: Import parent theme options in the link I gave? you should be able to find it here: https://kriesi.at/documentation/enfold/child-theme/#toggle-id-4
    The things you mentioned that are lost, is it Quick CSS? or some settings?
    Can you give us temporary admin access on your site? so we can take a further look.
    Just post the credentials privately.

    Best regards,
    Nikko

    in reply to: Diferent view on iphone devices #1355803

    Hi Ronaldo,

    I have checked your site with an iPad and it seems to be showing properly on my end now.

    Best regards,
    Nikko

    in reply to: Video – no sound & other issues #1355587

    Hi Elvira,

    For #2, please replace the content of enfold\config-templatebuilder\avia-shortcodes\slideshow\slideshow.js with this slideshow.js file.
    Make sure to clear your browser cache once you have replaced the content as it might still be fetching older js files.
    It should be fixed on the next Enfold updates.

    Best regards,
    Nikko

    in reply to: Post Featured Image #1355499

    Hi Esther,

    It seems like Dust & Metal is actually the correct size for it (260px width and 185px height) however since you want it to look as a square instead of rectangle, first you’ll need to use a child theme,
    You can download and find instructions on how to use it here: https://kriesi.at/documentation/enfold/child-theme/
    Once you used a child theme, add this code at the bottom of the child theme’s functions.php file:

    function enfold_customization_modify_thumb_size( $size ) {
      $size['portfolio_small'] = array('width'=>260, 'height'=>260);
      return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );

    then re-upload the featured image for Dust & Metal.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Diferent view on iphone devices #1355480

    Hi Ronaldo,

    Just remove this media query code so it takes effect on all screens:

    @media only screen and (max-width:767px) {}

    so the code will just look like this:

    #top #wrap_all .avia-button.avia-color-white {
        color: #095bad;
    }

    Seems like the issue is more of a persistent caching, try to @Guenni007’s suggestion.

    Best regards,
    Nikko

    in reply to: Copyright without Kriesi #1355479

    Hi HulaSlim,

    You can keep the socket containing copyright without any coding, by selecting Select a page to replace footer and keep socket in Default Footer & Socket Settings
    Here’s a link to a screenshot: https://imgur.com/aEn9BTp

    Best regards,
    Nikko

    in reply to: Downward arrow in full withd lide show #1355431

    Hi HulaSlim,

    There’s no option for that in full-width easy slider.
    The only workaround is to add it via javascript, try adding this code in your child theme’s functions.php file:

    function add_scrolldown_link() {
    	?>
    	<script>
    		var slider = document.getElementById("insivideo");
    		console.log(slider);
    		if (slider) {
    			var anchor = document.createElement("a");
    			anchor.href="#next-section";
    			anchor.classList.add('scroll-down-link');
    			anchor.classList.add('av-control-default');
    			anchor.setAttribute("aria-hidden", "true");
    			anchor.setAttribute("data-av_icon", "");
    			anchor.setAttribute("data-av_iconfont", "entypo-fontello");
    			console.log(anchor);
    			slider.appendChild(anchor);
    		}
    	</script>
    	<?php
    }
    add_action('wp_footer', 'add_scrolldown_link');

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Inconsistent Featured Image Sizing #1355417

    Hi FocusCanada,

    To ensure that featured images in single post pages are showing a consistent image ratio, you’ll need to upload images using the same height and width.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Odd Mega Menu Hover #1355414

    Hi Tim,

    Can you try to add this CSS code ad the bottom of Quick CSS (located in Enfold > General Styling > Quick CSS):

    #top #wrap_all .av-main-nav ul>li:hover>a {
        background-color: transparent;
        color: #46485f;
    }

    Hope it helps.

    Best regards,
    Nikko

    Hey makeck,

    Can you give us temporary admin access as well as FTP access? so we check on it further.
    Just post the credentials privately.

    Best regards,
    Nikko

    in reply to: Different font on one page #1355328

    Hi tammiviestinta,

    I think you have some unclosed strong tag located on your slider.
    Once it’s properly closed it should fix the issue on the page.

    Best regards,
    Nikko

    in reply to: Diferent view on iphone devices #1355327

    Hi Ronaldo,

    Please try to force the dark gray color on those menu links by adding this CSS code in Quick CSS and see if it helps:

    #top #header #header_main a, 
    #top #header #header_main a .avia-menu-text {
        color: #3b3b3b !important;
    }

    Best regards,
    Nikko

    in reply to: Video – no sound & other issues #1355287

    Hi Elvira,

    For number 3, you can inspect the element to check it, I have posted a screenshot link in private content which shows that height is applied to .avia-slideshow-inner which you can apply max-height so it does not exceed that height.

    As for number 2, we have already reported it and we ask for your patience as the devs are looking into other urgent issues as well. At the moment you can disable the autoplay on the video and once the video is played the sound should work well.

    Best regards,
    Nikko

    in reply to: Responsive Pricing Tables?? #1355285

    Hi Elvira,

    It’s pretty difficult to use the same table for mobile since it contains a lot of data in a very narrow area.
    I think an elegant solution for that (visually) is to use 1 large table for desktop/tablet which will be hidden for mobile and use 10 tables with 2 columns each and 5 rows (left column for title and right for value).

    Best regards,
    Nikko

    in reply to: picture filter on masonry grid #1355170

    Hi Tilman,

    We have answered this post on another thread, but will re-post the same answer we have responded on the other thread:

    is there in the meanwihle another – enfold integrated – solution to filter masonry galleries, i.e. visitor can select wich group of pics are shown?
    At the moment there’s none, however, the feature is on the list of things that will be added in Enfold.

    Or do you still recommend plugins as the one mentioned above?
    I haven’t tested those plugins but you can try to check some of the free ones available in the WordPress Plugin repository.

    Best regards,
    Nikko

    in reply to: Filters for Mason Gallery Grid #1355168

    Hi oestersund,

    is there in the meanwihle another – enfold integrated – solution to filter masonry galleries, i.e. visitor can select wich group of pics are shown?
    At the moment there’s none, however, the feature is on the list of things that will be added in Enfold.

    Or do you still recommend plugins as the one mentioned above?
    I haven’t tested those plugins but you can try to check some of the free ones available in the WordPress Plugin repository.

    Best regards,
    Nikko

    in reply to: Reduced image quality in gallery #1355161

    Hi Peter,

    You’re welcome. :)
    We’re happy that we could help.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Bug with Masonry / Taxonomy #1355159

    Hi Elvira,

    We apologize for the inconvenience but we’re glad that the issue has been resolved.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Video – no sound & other issues #1355158

    Hi Elvira,

    Thanks for providing the code.

    1. Major browsers do not allow videos to autoplay without muting them, that’s you can see this label on Autoplay Check if you want to disable video autoplay when this slide shows. Autoplayed videos will be muted by default..
    You can check autoplay policies from chrome and firefox respectively: https://developer.chrome.com/blog/autoplay/ and https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide

    2. I could confirm that the volume level could not be changed because it’s blocked. We’ll report this issue to our devs.

    3. The convenient solution for that will be adding this CSS code in Quick CSS (replace 120px with the correct height of your header in px):

    #top .avia-fullwidth-slider .avia-slideshow-inner {
        max-height: calc(100vh - 120px);
    }

    however the problem with this is that the there will be some white space (gray on my end) that shows up since the slider will try to show the whole video.

    Best regards,
    Nikko

    in reply to: Responsive Pricing Tables?? #1355150

    Hi Elvira,

    Since the width is a bit narrow in mobile devices, the common approach to that issue is stacking those columns on top of each other.
    It is possible to have them still in a row but text/content would most likely overlap with each other.

    Best regards,
    Nikko

    in reply to: avia layout gone! #1355144

    Hi Lefteris,

    Can you try clear the browser cache? or maybe use a different browser? and see if it helps.

    Best regards,
    Nikko

    in reply to: Facebook icon color #1355124

    Hi jormen,

    It’s predefined so the only way to change it is via CSS code in Enfold > General Styling > Quick CSS.
    Add this code inside Quick CSS and just change the color and background color:

    #top #wrap_all .av-social-link-facebook:hover a,
    #top #wrap_all .av-social-link-facebook a:focus{
    	color: #fff;
    	background-color: #37589b;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: I can't edit or add new post and pages #1355123

    Hi InekeWerkt,

    Thanks for the credentials, can you give us the login link as well?
    Just post it privately.

    Best regards,
    Nikko

    Hi kisrael,

    We’re happy to hear that :)
    Thanks for using Enfold and have a great day!


    @Steve
    , thanks for helping out :)

    Best regards,
    Nikko

    in reply to: Diferent view on iphone devices #1355121

    Hi Ronaldo,

    Please try to add this CSS code in Enfold > General Styling:

    @media only screen and (max-width:767px) {
      #top #wrap_all .avia-button.avia-color-white {
        color: #095bad;
      }
    }

    Best regards,
    Nikko

    in reply to: CTA Color on Mobile #1355119

    Hi navindesigns,

    We apologize for the delayed response.
    Can you try to temporarily disable the following CSS codes in your Quick CSS:

    #top .avia-button.avia-size-large:hover, #top.home #av_section_3 .avia-content-slider-inner .read-more-link a:hover, #top.page-id-167 #av_section_5 .avia-content-slider-inner .read-more-link a:hover, #top .av-masonry-load-more:hover  {
      opacity: 1;
      transform: translateY(-3px); 
      color: #ffffff !important;
      border:2px solid #007ca5 !important;
      background-color: #007ca5 !important; 
      text-decoration: none;
      }

    and:

    .avia-button.avia-size-large:active, .home #av_section_3 .avia-content-slider-inner .read-more-link a:active, .page-id-167 #av_section_5 .avia-content-slider-inner .read-more-link a:active, #top .av-masonry-load-more:active {
      transform: translateY(-3px);
      color: #ffffff !important;
      border: 2px solid #007ca5 !important;
      background-color: #007ca5 !important;
      text-decoration: none;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: avia layout gone! #1355118

    Hi lech07,

    I tried to check the page in the screenshot and could see the sidebar modules and tried to minimize them and it’s working properly on my end.
    Here’s the screenshot: https://imgur.com/IRjL4Z6

    Best regards,
    Nikko

Viewing 30 posts - 2,911 through 2,940 (of 25,536 total)