Forum Replies Created

Viewing 30 posts - 14,191 through 14,220 (of 35,007 total)
  • Author
    Posts
  • in reply to: Catalogue content #1318850

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Catalogue mobile size #1318849

    Hey Fberguno,
    Thank you for your patience and the link to your site, I see that in the wine section of your catalog element the price title is quite long due to COPA & BOTELLA text with the price, my recommendation is to drop the price down to the next line so the price title and item title don’t overlap. Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 1440px) { 
    	#av_section_4 .av-catalogue-container .av-catalogue-price {
        position: relative;
    	}
    }

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

    Best regards,
    Mike

    in reply to: Will upgrading solve this issue #1318848

    Hey Amnon Nissan,
    Thank you for your patience, the hovan.com, site doesn’t look like a WordPress site it looks like it was created with sitecms.co
    I see that your “broken” site is Enfold Version: 4.8.6.2
    If the hovan.com site was Enfold v1.9.1 then it would not work with WordPress v5+ nor PHP 7+
    So you would need to update and it should be updateable as out Dev Team has maintained backward compatibility on the most part, I’m not sure about v1.9.1 but I have seen a v3 site update and work.
    But I don’t believe this site is an Enfold or WordPress site, I hope this helps.

    Best regards,
    Mike

    in reply to: Tracking tag/pixel #1318846

    Hey Maureen or Shari,
    Thank you for your patience as I understand your question you have some tracking code that you only want to add to the header of certain pages, in that case try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function add_select_page_tracking(){
        if(is_page(array(42, 21, 85))) {
    ?>
    //Put Your Tracking Code Here
    <?php
        }
    }
    add_action('wp_head', 'add_select_page_tracking');

    you will need to replace //Put Your Tracking Code Here with your code and replace the array numbers with your page IDs.
    If you want the code to load in your footer then change wp_head to wp_footer

    Best regards,
    Mike

    in reply to: Footer widgets next to each other in mobile view #1318844

    Hey ms-45,
    Thank you for your patience and the link to your site, I found that for some reason on this page the main content div #wrap_all is closing early so the #footer is not inside of it, so this css target won’t work:
    .responsive #top #wrap_all .flex_column
    which is what tells the columns to be 100% width at mobile.
    I note that your pages /impressum/ & /datenschutz/ or your shopping pages do not have this problem, so it’s only your homepage.
    I believe this could be a plugin conflict but you have many plugins, you could disable your plugins one at a time clearing your browser cache between each one until you find the conflict, or you could try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .container .av-content-small, .responsive #top #footer .flex_column, .responsive #top #footer .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    }

    in my test this solves and should not cause any issues in the future, after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Site crashed afer update #1318843

    Hey hymlo,
    Thank you for your patience, the error is occurring in your file /wp-content/cache/minify/46144.js this is from your cache / minify plugin, so please disable your cache plugin and check again.

    Best regards,
    Mike

    in reply to: Avia gallery blanc position #1318842

    Hey Maureen,
    Thank you for your patience and the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.page-id-618 .avia-gallery-thumb > .first_thumb {
    	clear: left;
    }

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

    Best regards,
    Mike

    in reply to: social media icons side by side centered #1318841

    Hi,
    Thank you for your patience and the link to your site, Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top .flex_column.avia-builder-el-7 > .av_font_icon > a {
    	display: inline; 
    }

    After applying the css, please clear your browser cache and check.
    the expected results:
    2021-08-29_001.jpg

    Best regards,
    Mike

    in reply to: Modern events calendar & blog masonry animation #1318837

    Hey Dan,
    Thank you for your patience and the link to your site, I checked your page and the masonry element and the error seems to be caused by the Modern Events Calendar frontend.min.css and these 4 rules dealing with the class .isotope-item:

    .isotope-item {
        z-index: 2;
    }
    
    .isotope-hidden.isotope-item {
        pointer-events: none;
        z-index: 1;
    }
    
    .isotope,
    .isotope .isotope-item {
        -webkit-transition-duration: 0.8s;
        -moz-transition-duration: 0.8s;
        transition-duration: 0.8s;
    }
    
    .isotope {
        -webkit-transition-property: height, width;
        -moz-transition-property: height, width;
        transition-property: height, width;
    }
    
    .isotope .isotope-item {
        -webkit-transition-property: -webkit-transform, opacity;
        -moz-transition-property: -moz-transform, opacity;
        transition-property: transform, opacity;
    }
    

    this conflict is because the plugin rule is not specific enough to not cause conflicts. It seems that the masonry layout in Modern Events Calendar is only available for the Pro version, you are only using the free lite version so it would be safe to remove these rules. I made this edit for you and cleared your cache plugin & Autoptimize plugin and now the page masonry is working correctly, you will need to clear your browser cache and then it should work correctly for you.

    I will report this to our Dev Team, but I don’t think there is much we can do other than ask Modern Events Calendar to change their css rules. So for now keep the edit in mind if you update the plugin.

    Best regards,
    Mike

    in reply to: Column problem #1318836

    Hi,
    Thanks for the feedback I checked on a 21″ Mac, Big Sur v11.5.2, with Safari v14.1.2 and I don’t see the error.
    To add a screenshot please try using an image hosting service and pasting the image URL in your post. It looks like you are not using any caching or the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression setting, so please give this a try, enable the Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files option, and save, then go to Enfold Theme Options ▸ General Styling ▸ Quick CSS field and add a blank space so to allow you to save the theme options again, then
    clear your Safari cache, and note step 4 where you should Clear the History, then check your page again. Safari is known to be harder to clear the cache on, so perhaps this is part of the error?

    Best regards,
    Mike

    in reply to: Column problem #1318801

    Hey macjeffff,
    Thank you for your patience and for the link to your page, I see how you are using empty 1/5 columns to center the middle columns, but I didn’t find any examples on your page where the first column was ignored, I checked with a Windows 10 desktop, 1520px and Chrome. If you see the issue on this page please try to describe the section and what setup you are using. If not please link to a page showing the error.

    Best regards,
    Mike

    in reply to: Adjusting Portfolio Grid #1318800

    Hey MikeTandySwag,
    Thank you for your patience, I would recommend trying to use two portfolio elements, the first one to display the two lead members and the second to display the rest. You may need to adjust the size of the first two to match the others, and they will show in a different ajax frame, but I don’t see any other way to set the first two apart from the others since the grid is created with javascript and uses absolute locations to create the grid.

    Best regards,
    Mike

    in reply to: Moving Author and Date to Under Title #1318797

    Hey MikeTandySwag,
    Thank you for your patience and the link to your site, try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($){
      $( '.post-entry' ).each(function() {
      $( this ).find( '.post-meta-infos:first' ).css({'margin-top': '0'}).insertAfter( $(this).find('.post-title.entry-title'));
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Help with grid row spacing #1318796

    Hi,
    Glad to hear this helped, for the video try this:

    #av-layout-grid-4 .avia-video.avia-video-custom,
    #av-layout-grid-4 .avia-iframe-wrap iframe {
    	border-radius: 15px;
    }

    instead of a color section try a one column with a background color and the border radius, that should work, if not try making a mockup example.

    Best regards,
    Mike

    in reply to: Mailchimp button align #1318795

    Hey whdsolutions,
    Thank you for your patience and the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe {
    background-image: url(https://darkeandtaylor-co-uk.stackstaging.com/wp-content/uploads/2021/08/SEND.png);
    background-repeat: no-repeat;
    background-color: transparent!important;
    color: transparent;
    background-size: contain;
    background-position: 0px 0px;
    height: 44px;
    }
    
    @media only screen and (max-width: 767px) { 
    	#top.page-id-275 #mc_embed_signup_scroll > .clear {
    	float: right;
        width: 34%;
    }
    }
    @media only screen and (min-width: 768px) and (max-width: 1023px) { 
    	#top.page-id-275 #mc_embed_signup_scroll > .clear {
    	float: right;
        width: 38%;
    }
    }
    @media only screen and (min-width: 1024px) and (max-width: 1439px) { 
    	#top.page-id-275 #mc_embed_signup_scroll > .clear {
    	float: right;
        width: 29%;
    }
    }
    @media only screen and (min-width: 1440px) { 
    	#top.page-id-275 #mc_embed_signup_scroll > .clear {
    	float: right;
        width: 20%;
    }
    }

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

    Best regards,
    Mike

    in reply to: Extra padding in the left side Masonry Gallery #1318789

    Hey mvi,
    Thank you for your patience and the link to your site, this padding was added with v4.8.6.1 to center large gap masonry elements.
    The bottom and right side have a 15px “space” that was pushing the element off and the Dev Team corrected this by adding the padding, please see the screenshot in the Private Content area.
    If you wish to remove this please try this css:

    #top .container .av-masonry.av-large-gap {
      padding: 0 !important;
    }

    Best regards,
    Mike

    in reply to: Help with grid row spacing #1318788

    Hi,
    Thank you for your patience and the link to your test page, for rounding the corners of the background images in your grid row cells it is possible like this:

    #main > .av-layout-grid-container > .flex_cell.av_one_half {
    	border-radius: 10px;
        background-size: cover !important;
    }

    but because it is a grid row you will not be able to have a space between the cells, so I recommend removing the background images and adding image elements inside of the grid row cells then set the border-radius like this:

    #main > .av-layout-grid-container > .flex_cell.av_one_half img {
    	border-radius: 10px;
    }

    now you will find that at mobile the images are not full-width and you still don’t have a space between the first two images, to correct try this:

    @media only screen and (max-width: 767px) { 
    	.responsive #top #wrap_all #av-layout-grid-1.av-flex-cells .no_margin {
    		padding: 0!important;
    	}
    	#top #wrap_all #av-layout-grid-1 > .avia-builder-el-first {
    	margin-bottom: 20px;
        }
    }
    

    linked below is the test page I created to work this out, please check and try this out.

    Best regards,
    Mike

    Hey bobfurgo,
    Thank you for your patience and the link to your site, try adding this script to the end of your functions.php file in Appearance ▸ Editor, it is for the horizontal gallery and counts the slides and adds a class to first and last ones, then hides the next and previous buttons on the first and last slide.

    function horizontal_gallery_remove_first_last_slideshow_arrows() { ?>
        <script>
    (function($){
      $(window).load(function(){
    var lis = $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap').length;
    var hgs = $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap');
    var prev = $('.av-horizontal-gallery .av-horizontal-gallery-prev');
    var next = $('.av-horizontal-gallery .av-horizontal-gallery-next');
    
    $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap').each(function(index){
        if(index<1)$(this).addClass('first');
        if(index>=lis-1)$(this).addClass('last');
    })
    $('.avia-slideshow-arrows a').click(function(){
    if (hgs.is('.first.av-active-gal-item')){
    	prev.css({'display' : 'none'});
    }else{
    	prev.css({'display' : 'block'});
    }
    if (hgs.is('.last.av-active-gal-item')){
    	next.css({'display' : 'none'});
    }else{
    	next.css({'display' : 'block'});
    }
    });
    	
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'horizontal_gallery_remove_first_last_slideshow_arrows');

    If you have any issues with it please check that you are not forcing the jQuery to load in the footer in the theme option Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer or with your caching plugin.

    Best regards,
    Mike

    in reply to: Checkboxes stretched #1318650

    Hi,
    Thank you for your patience, and the link to your site but I don’t believe that I’m seeing what you originally intended, perhaps you have changed the layout?
    Please see the screenshot in the Private Content area of what I’m seeing in step two, the radio buttons look at work correctly for me on Windows 10 in Chrome.
    As I recall with this plugin some of the styles have a lower specificity than what the Enfold form elements use, for example our rules begin with an ID #top and the Everest form builder doesn’t use any IDs, so if you have a rule that is being overwritten you could copy it to your custom css and add the ID #top to the beginning.

    Best regards,
    Mike

    Hi,
    Thank you for sharing your snippet, perhaps others will also find it helpful, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Woocommerce Image width #1318286

    Hi,
    Thanks for the feedback and the screenshots, please try this css:

    #top.single-product #main > .container_wrap_first.template-shop .single-product-main-image {
        width: 100%;
        float: none;
    }

    This also makes the product image full width, if you want it to stay at 33% similar to your screenshot, then remove the line width: 100%;
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Can't remove padding/margin #1318284

    Hi,
    While it is true that many elements have margin & padding settings, what you are doing doesn’t have that option, for your headshot you are adding is plain image inside the text block element
    2021-08-25_001.jpg
    neither the text block element or the WP plain image have margin or padding settings, but even if they did it would not solve because the margin is coming from the paragraph tag [p] inside the text element, not the text element itself.
    2021-08-25_002.jpg

    For your new question, on the very large screen the color section’s vertical-align: middle is showing, to correct please use this css:

    #top.home #av_section_1.avia-section.av-minimum-height .container .content {
        vertical-align: bottom;
    }

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

    So you have a color section with a background image with a column > text block > p > image that you want aligned to the bottom of your background image. The 3 snippets of css above achieve this, but you said that you may like to use this configuration elsewhere, so I recommend adding custom classes to these elements and the snippets and saving the block as a Template so it will be easier for you in the future.
    2021-08-25_003.jpg
    Please let us know if you need assistance adding the custom classes & adjusting the css, if you do please copy this section to a new test page, because creating a template saves the whole page not just this set of elements, and include an admin login in the Private Content area so we can adjust the custom classes and css to work together, then you can save as a template.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Thank you, for the images with the borders please try this css:

    #main .av-magazine-thumbnail {
        border: 0px none;
    }

    I see other borders between the elements but I believe you want to retain these.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: mobile menu trap focus #1318108

    Hi,
    Thanks for the feedback, I will update you here when I hear back from the Dev Team, thank you for your patience.

    Best regards,
    Mike

    in reply to: mobile menu trap focus #1317984

    Hi,
    Thanks for the feedback and your patience, your explanation helped and I tried to modify the script you linked to be I was not fully successful and also felt the Dev Team should be brought into this, so I submitted this to them and will reply back when I hear from them. We are a world wide organization, so while you linked to info about being ADA compliant we will probably want to go with something broader like WCAG, I didn’t find a “trapped” spec in either and wonder if having the menu close once the user tabs out of the menu would also satisfy, can you link to the ADA spec that your accessibility review company is pointing to and if they also have a matching WCAG spec? Thank you.

    Best regards,
    Mike

    in reply to: 500 internal server error occured #1317848

    Hey Ayumi,
    Thank you for your patience and the link to your site, I was able to update your page by adding text and I saw no error, are you still having this issue? How can I recreate the error?

    Best regards,
    Mike

    Hey smiley789654123,
    Thank you for your patience and the link to your site, to change the background color to transparent and change the post date color to white, Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main .main_color .avia-content-slider .slide-image {
    	background: transparent;
    }
    #main .main_color .avia-content-slider .slide-meta-time {
    	color: #fff;
    }

    but I didn’t see a border color on this element, do you mean a different border color?
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey Matt,
    Thank you for your patience and the link to your site, when I view your site with Chrome on Windows 10 I see your logo, please see the screenshot in the Private Content area, perhaps since you first posted you found the solution.
    The screenshot you posted looks like the stylesheet didn’t load with the site, but I don’t see this when I check.
    Please let us know if this continues to be an issue for you and how we can reproduce the error you are seeing.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, you are seeing macos because inside the zip file is a directory called macos try extracting the zip file and deleting it and re-ziping with only the necessary files.

    Best regards,
    Mike

Viewing 30 posts - 14,191 through 14,220 (of 35,007 total)