Forum Replies Created

Viewing 30 posts - 14,161 through 14,190 (of 35,007 total)
  • Author
    Posts
  • in reply to: Remove top margin from WordPress posts #1319751

    Hi,
    Thank you for your patience and the link to your site, but the link to your post is password protected so I can not see it, please provide.
    Based on your description that you are hiding the header with:

    #header {
        display: none !important;
    }

    I believe that you will actually want to remove the top padding, as there is no top margin on the #main. So please try this css for a a specific post or change the post ID to .single-post for all posts.

    .html_header_top.html_header_sticky #top.postid-3933 #wrap_all #main {
        padding-top: 0px !important;
    }

    After applying the css, please clear your browser cache and check. If you still have trouble please link to a page or post that we can examine.

    Best regards,
    Mike

    in reply to: Rotating grid testimonials #1319746

    Hey natashawalker1,
    Thank you for your patience and for the link to your site, the main trouble with your request is that when the testimonials are shown as a grid they are all showing, so what would you show when they change? When the testimonials are in slider mode only one testimonial is shown at a time.
    I did come up with a solution where if you have two testimonial elements showing 3 testimonials in a grid each, then we could toggle between the two elements every 8 seconds. But I couldn’t do this on your site because you are using Enfold v4.5.7 and in that version, the testimonial element doesn’t have the custom class option, so you will need to update your theme, but I will explain how to do this.
    First, on your page create two testimonial elements each with 3 different testimonials
    2021-09-04_001.png
    The add the custom classes first & last to them:
    2021-09-04_002.png
    Then add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia-grid-testimonials.last {
    	display: none;
    }

    Then add this script to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($) {
    	setInterval(function(){
         	$('.avia-grid-testimonials').toggle()
    },8000);
    }(jQuery));
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Now you can have two grids switching back and forth, and each grid can be as many elements as you wish but try to have the two use the same number of items. But please note that the switch is sharp without any animation, I tried to add some animation but the timing proved to be very tricky so the plain toggle worked best.
    Hopefully, this will help you.

    Best regards,
    Mike

    in reply to: Grid Row – Changing Side Border Width in 3 Column Row #1319741

    Hi,
    Glad to help, yes this will only target the middle cell in your first grid row on your home page. Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Tabs In Mobile #1319641

    Hi,

    @seomar
    thank you for the link to your page and I see the tab section beginning with “Precios estándar” but the tabs are showing expanded and do not close or open on click, on desktop or mobile. I see you have a javascript error in the browser console but since you are using a caching plugin it doesn’t help. Please disable all of your caching and the theme JS & CSS file merging, and include an admin login in the Private Content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Grid Row – Changing Side Border Width in 3 Column Row #1319631

    Hi,
    Thank you for your patience and the login and the link to your example, I added this to your Quick CSS to achieve the white border to your center cell, please clear your browser cache and check.

    #top.home #av-layout-grid-1 > .el_after_av_cell_one_third.el_before_av_cell_one_third {
    	border-right: 10px solid #fff;
        border-left: 10px solid #fff;
    }

    Best regards,
    Mike

    in reply to: Adjusting Portfolio Grid #1319346

    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: Column problem #1319344

    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

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

    Hi,
    If you are using a child theme you can override the masonry element with your own by copying the whole /masonry_entries/ directory to your child theme and modifying the masonry_entries.css
    /enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css
    by changing the padding on line 441
    but this seems it would be a lot more work for you than simply adding the needed css to your custom stylesheet or the Quick CSS field.

    Best regards,
    Mike

    in reply to: Adjusting Portfolio Grid #1319147

    Hi,
    Please try this css:

    #top.page-id-63 #av-sc-portfolio-1 {
        right: -18%;
    }

    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

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

    Hi,
    Sorry that this has impacted you, but this change was to correct an error that other users were reporting, I imagine in your situation you didn’t notice the error, but as you can see from the screenshot without the padding the element is left aligned.

    Best regards,
    Mike

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

    Hi,
    Please check the script, it looks like I forgot to add a closing bracket
    2021-08-31_002.jpg
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Column problem #1319133

    Hi,
    Thanks for the screenshot, I’m not seeing that on my Mac with Safari v14.1.2, what version of Safari are you using? You are using a Mac desktop and not an iPad to see this error right?
    I don’t think this is a caching issue, but I don’t know what it could be from, the key steps above was to:
    1: enable the Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files option
    2: 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 (big blue button) – *this rebuilds the css files
    3: then clear your Safari cache, and note step 4 where you should Clear the History
    I note earlier you said the you are not seeing it in Chrome on your Mac, so I’m stumped also.
    Please let us know what version Mac & Safari so we can compare. I’m asking our team to check on their machines to see if anyone a duplicate.

    Best regards,
    Mike

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

    Hi,
    I see, so what would you like to do next?
    For your original issue, we have solved will css, but as I understand you would like to be able to use this combination with different images elsewhere on your site, so I recommend adding custom classes to these elements and the snippets and saving the block as a Template so you can use it again in the future.
    2021-08-25_003.jpg
    If you would like a hand with this please include an admin login in the Private Content area so we can adjust the custom classes and css to work together, on a test page and then you can save it 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

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

    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: Show Author in blog grid #1318973

    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: Footer widgets next to each other in mobile view #1318970

    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: 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 &gt; 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

Viewing 30 posts - 14,161 through 14,190 (of 35,007 total)