Forum Replies Created

Viewing 30 posts - 13,771 through 13,800 (of 34,600 total)
  • Author
    Posts
  • in reply to: Can't remove padding/margin #1318969

    Hi,
    Yes, all text elements have paragraph tags in them and also for every [Return] or [Enter] key, I believe this is from the WordPress core.
    2021-08-30_002.jpg
    Using a code block element might work well, good idea, did you have a chance to try it?

    Best regards,
    Mike

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

    Hi,
    Glad we were able to help, please see below, 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: Mailchimp button align #1318963

    Hi,
    The reason the button is not floating to the right is because the css you added has > instead of > typically this occurs when the code is copied from an email instead of the forum, please check this.
    2021-08-30_001.jpg
    The image is reduced to fit the button size with the height and background-size specs in the rule, I didn’t realize you wanted the button so large. So with the large button the media queries need to be adjusted, please try this css instead of the above css:

    #mc_embed_signup #mc_embed_signup_scroll #mc-embedded-subscribe.button {
    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-position: 0px 0px;
    height: 75px;
    width: 190px;
    }
    
    @media only screen and (max-width: 767px) { 
    	#top.page-id-275 #mc_embed_signup_scroll > .clear {
    	float: right;
        width: 56%;
    }
    }
    @media only screen and (min-width: 768px) and (max-width: 1023px) { 
    	#top.page-id-275 #mc_embed_signup_scroll > .clear {
    	float: right;
        width: 63%;
    }
    }
    @media only screen and (min-width: 1024px) and (max-width: 1439px) { 
    	#top.page-id-275 #mc_embed_signup_scroll > .clear {
    	float: right;
        width: 46%;
    }
    }
    @media only screen and (min-width: 1440px) { 
    	#top.page-id-275 #mc_embed_signup_scroll > .clear {
    	float: right;
        width: 31%;
    }
    }

    Best regards,
    Mike

    in reply to: Avia gallery blanc position #1318957

    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

    in reply to: Site crashed afer update #1318956

    Hi,
    Please include an admin login in the Private Content area so we can take a closer look, but it looks like you have broken Advanced Layout Builder shortcode in a tab container, it may be an unclosed tag or a curly quote, it’s hard to tell from the outside.

    Best regards,
    Mike

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

    Hi,
    Glad that this helped, please try this css instead:

    @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, .responsive #top #liefergebiete .flex_column, .responsive #top #liefergebiete .av-flex-cells .no_margin, .responsive #top #kontakt .flex_column, .responsive #top #kontakt .av-flex-cells .no_margin, .responsive #top #speisekarte .flex_column, .responsive #top #speisekarte .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    }
    

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

    Best regards,
    Mike

    in reply to: Catalogue mobile size #1318869

    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

    in reply to: Will upgrading solve this issue #1318867

    Hi,
    Glad to hear this helped you move your project forward, thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Amazon Icon is showing Pencil Icon? #1318865

    Hey Jad,
    Thank you for the link to your site but the login doesn’t work. I assume that you followed these steps: How to add Custom Social Icons to Enfold options
    But looking at your code snippet above I see that you didn’t specify the font, you used the word “font” instead of “entypo-fontello”
    also please note if you are not using a child theme you need to add the code to the enfold/functions.php at around line 47 after

    if( isset( $avia_config['use_child_theme_functions_only'] ) )	
    {	
    	return;		
    }

    but I see that you are using a child theme so perhaps you have a curly quote in your code?
    This is the code I used which worked for me:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    $icons['amazon'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue924');
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons['Amazon'] = 'amazon';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    the social profile was added at Enfold Theme Options ▸ Social Profiles ▸ Your social profiles at the bottom of the list
    2021-08-29_003.jpg
    and on the frontend it shows like this
    2021-08-29_004.jpg
    Don’t forget the Amazon orange mouse-over css:

    #top #wrap_all .av-social-link-amazon:hover a{
        color:#fff; 
        background-color:#FF9900; 
    }
    

    Best regards,
    Mike

    Hey sldeutsch,
    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: 767px) {
    	#top.page-id-2794 .avia-content-slider .slide-entry-excerpt {
        min-height: 320px;
        }
        #top.page-id-2878 .avia-content-slider .slide-entry-excerpt {
        min-height: 245px;
        }
    }
    @media only screen and (min-width: 768px) and (max-width: 1023px) { 
    	#top.page-id-2794 .avia-content-slider .slide-entry-excerpt {
        min-height: 200px;
        }
        #top.page-id-2878 .avia-content-slider .slide-entry-excerpt {
        min-height: 130px;
        }    
    }
    @media only screen and (min-width: 1024px) {
    	#top.page-id-2794 .avia-content-slider .slide-entry-excerpt {
        min-height: 180px;
        }
        #top.page-id-2878 .avia-content-slider .slide-entry-excerpt {
        min-height: 105px;
        }    
    }

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

    Best regards,
    Mike

    in reply to: Double content checkbox in comment form #1318858

    Hi,
    Glad to hear that you have this sorted out, 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

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

    #top select, #top .avia_ajax_form .select, #top .entry-content-wrapper select {
        background-image: none!important;
    }

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

    Best regards,
    Mike

    in reply to: Show Author in blog grid #1318856

    Hey Peter,
    Thank you for your patience and the link to your site, this solution should work for you, I tested it by trying to match your layout.
    First go to WordPress ▸ Appearance ▸ Theme Editor and choose the Enfold file config-templatebuilder/avia-shortcodes/postslider/postslider.php
    search for the line: $meta .= "<time class='slide-meta-time updated' $markup>" . get_the_time( get_option( 'date_format' ), $the_id ) . '</time>'; around line 916
    then add this below:

    	$author = get_the_author_meta( 'display_name', $entry->post_author );
    	$meta .= "<span class='slide-meta-author updated'>" . $author."</span>";

    it should look like this:
    2021-08-29_002.jpg
    if you still have trouble please include an admin login in the Private Content area so we can try to help.

    Best regards,
    Mike

    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

Viewing 30 posts - 13,771 through 13,800 (of 34,600 total)