Forum Replies Created

Viewing 30 posts - 481 through 510 (of 33,009 total)
  • Author
    Posts
  • in reply to: How to change the colour of the footer menue? #1462576

    Hey Jak73,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #socket #avia3-menu .avia-menu-text {
    	color: #000;
    }
    #socket #avia3-menu .avia-menu-text:hover {
    	color: #ccc;
    }

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

    Best regards,
    Mike

    Hi,
    I disabled the Separator Between Menu Items and now your buttons show correctly, please check.
    I posted to the Dev Team for their review, Thank you for your patience

    Best regards,
    Mike

    in reply to: Page editing error #1462573

    Hi,
    There is no limit to the page size, but unfortunately access is still blocked.
    Have you tried to disable all of your plugins, this could be a plugin conflict.

    Best regards,
    Mike

    in reply to: email form with wrong address returns #1462572

    Hi,
    When I check your contact page it looks like you are using a plugin “formidable” I have not used this plugin, but your WordPress ▸ Settings ▸ General ▸ Administration Email Address is the email that you don’t want to used, try changing it.

    Best regards,
    Mike

    in reply to: Change of Logo #1462569

    Hi,
    Glad Guenni007 could help, thank you Guenni007, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Custom Main Menu Font #1462568

    Hi,
    The correct font family name is Seymour-One with a dash, I corrected it for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Pricing Table Help #1462567

    Hey navindesigns,
    Thank you for the link to your site, it looks like the burger menu color is black on a black header background, so it is not seen, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to make it white:

    .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after {
        background-color: #fff;
    }

    For the table height, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_table_script() { ?>
      <script>
    (function($){
      $(window).load(function(){
      	$('.page-id-2333 .avia-pricing-table-container').each(function(){  
         var $columns = $('.pricing-table',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
    });
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_table_script', 99 );

    and this css in your Quick CSS:

    .page-id-2333 .pricing-table li.empty-table-cell {
        display: block;
    }
    .page-id-2333 .avia-pricing-table-container .pricing-table li:nth-child(6) {
    	height: 62px;
    }

    Best regards,
    Mike

    in reply to: horinzontal line full screen #1462565

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.page-id-317 #wrap_all #main #av_section_1.avia-builder-el-first {
    	border-top: 10px solid #000;
    	border-bottom: 10px solid #000;
    }

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

    Best regards,
    Mike

    in reply to: Section toggle #1462563

    Hey dweddell,
    Thank you for the link to your site, but I didn’t find the jQuery code on your page or the console.log messages, are you sure that you added it to your functions.php file?

    function toggle_on_click() {
    ?>
    <script>
    jQuery(window).on('load', function(){
    
    jQuery(".toggle-button a").on("click", function(e) {
    	console.log(" toggle section");
    
    	jQuery("#toggle-section").toggleClass("hide-me");
    
    	console.log(" Prevent default ");
    
    	e.preventDefault();
    
    });
    });
    </script>
    <?php 
    }
    add_action('wp_footer', 'toggle_on_click');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    If you did, please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Accordeon problem / flickering on iOS devices #1462562

    Hi,
    Thanks for the link to your site, I disabled the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and cleared your WPRocket cache and the issue seems solved. Please clear your browser cache and check.
    Please note that testing with Safari can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: How to change the symbols of the arkkordeon toggles? #1462561

    Hi,
    I’m not seeing this this on my Mac, but you could try adding this css:

    .togglecontainer * {
    	border-left: none;
    	border-right: none;
    	border-left-color: transparent !important;
      border-right-color: transparent !important;
    }
    .togglecontainer .av-inherit-border-color {
    	border-left-color: transparent !important;
      border-right-color: transparent !important;
    }

    then clear your browser cache, Please note that testing with Safari can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Different View in Smartphone and Browser #1462560

    Hi,
    When I check your page it looks like you have this custom css:
    Enfold Support 6352
    try changing the top:41%; to top:27%;
    and you have this custom css:
    Enfold Support 6354
    try changing the top:16px; to top:21px;

    Best regards,
    Mike

    in reply to: 3 images with clickable link next to another #1462556

    Hi,
    Try this HTML:

    <div class="nav-container">
    <div class="navigation">
    <a href="#" class="nav-link left-link"><img src="https://w-bullinger.com/wp-content/uploads/2024/06/WB-Nav-Arrow-Left.svg" alt="Left"></a>
    <a href="#" class="nav-link close-link"><img src="https://w-bullinger.com/wp-content/uploads/2024/06/WB-Nav-X.svg" alt="close"></a>
    <a href="#" class="nav-link right-link"><img src="https://w-bullinger.com/wp-content/uploads/2024/06/WB-Nav-Arrow-Right.svg" alt="Right"></a>
    </div>
    </div>

    and this css:

    .nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 300px;
    }
    
    .nav-button, .nav-link {
        display: inline-block;
        padding: 10px;
        text-align: center;
        text-decoration: none;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f0f0f0;
        color: #333;
    }
    
    .nav-button:hover, .nav-link:hover {
        background-color: #e0e0e0;
    }
    
    .nav-link img {
        width: 20px; /* Adjust the size of the image icon */
        height: 20px;
    }

    For this result
    Enfold Support 6350

    Best regards,
    Mike

    in reply to: Strange behavior when I scroll up #1462554

    Hey colosimoemiliano27,
    Thank you for your patience and your video, it looks like when you scroll you are touching the flipbox elements causing them to flip, please see the screenshot in the Private Content area. As for the page scrolling suddenly down, I’m not sure what casued this, but I can’t reproduce this on a iPhone or Android.
    It kind of looks like a swipe gesture or a link click, but I didn’t find a link around there.

    Best regards,
    Mike

    in reply to: Flux checkout plugin styling issue #1462553

    Hi,
    Thank you for the link to your site and the screenshot, I don’t know what the plugin style is meant to look like, but from your screenshot it looks like the border around the elements is the issue. I don’t think that disabling the theme style would be a good solution as I doubt the plugin includes the css required for all of the elements on the checkout page.
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to remove the borders and slightly adjust a couple of elements for a better view:

    .woocommerce-checkout td,
    .woocommerce-checkout tr th:first-child, 
    .woocommerce-checkout tr td:first-child,
    .woocommerce-checkout tr:first-child th, 
    .woocommerce-checkout tr:first-child td,
    .woocommerce-checkout .flux-checkout__content-right #order_review tr.cart_item td, 
    .woocommerce-checkout .flux-step #order_review tr.cart_item td {
        border: none;
    }
    .woocommerce-checkout div table.shop_table td {
        padding: 0;
    }
    .woocommerce-page .button {
        margin: 0;
    }
    .woocommerce form p.form-row input[type=text]#coupon_code {
    	padding-right: 0;
    }
    .woocommerce-page .coupon-form td .checkout_coupon.woocommerce-form-coupon p.form-row-last {
        width: 41%;
    }
    .woocommerce-page .coupon-form td .checkout_coupon.woocommerce-form-coupon p.form-row-first {
        width: 50%;
    }

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

    Best regards,
    Mike

    in reply to: Fatal error: Unparenthesized `a ? b : c ? d : e` #1462551

    Hi,
    Ok we will leave this open to hear back from you, if you get this sorted out please let us know so we can close this.

    Best regards,
    Mike

    in reply to: accessibility #1462550

    Hey Advantage09,
    Thank you for your patience and the link to your site, but the W3 Validator is not the same as a WCAG Validator.
    Often when I check the W3 Validator gives false errors, such as Error: No p element in scope but a p end tag seen. when you check the source code the “p” tage is there:
    Enfold Support 6344
    As for the role=tablist issue, when I check your site on a WCAG Validator this is not flaged, as I understand the tab element can be in the tabpanel element.
    On May 7 the Dev Team made some adjustment to this to be compliment with the European Accessibility Act (EAA) documentation, and this is outside my expertise, but since the WCAG Validator is not flaging this it would seem that this is correct.
    If you wish I can ask this on the Dev Team Github thread

    Best regards,
    Mike

    in reply to: Fatal error: Unparenthesized `a ? b : c ? d : e` #1462547

    Hi,
    Please see the link below, it contains
    v4.8.8.1
    v4.8.9
    v4.9
    for you to try.
    But these versions are very far behind with many other errors that need to be updated.
    Your best approach will be to create a staging site and update your theme and then address the style issues until your site looks the way you want, and then deploy the same steps on your live site.
    Typically updating will not casue styling issues, if you are having trouble with your customizations when you update, this could be due to your customizations in the core theme files or some plugin conflicts.
    If you create a staging site and update it and post admin login to both the staging site & the live site, we could review and help.

    Best regards,
    Mike

    Hi,
    You can replace color: var(–enfold-header_replacement_menu_color); with a color, no problem.
    The word “logo” should be hidden by the css, I would have to see the page.
    There is no animation built in to it, your example menu has no animation.
    Your example menu changes to a different style at smaller screens, I only looked at the desktop version.

    Best regards,
    Mike

    in reply to: How to change the symbols of the arkkordeon toggles? #1462544

    Hi,
    Change the precious css to this:

    .av_toggle_section .toggle_icon:before {
    	content: url(https://test.w-bullinger.com/WB-Reader-Arrow.svg);
      top: -10px;    
      position: relative;
    }
    .av_toggle_section .activeTitle .toggle_icon:before {
    	content: url(https://test.w-bullinger.com/WB-Reader-X.svg);
      top: -10px;    
      position: relative;	
    }
    .av_toggle_section .toggle_icon {
    	border:none;	
    }
    .av_toggle_section .toggle_icon .vert_icon,
    .av_toggle_section .toggle_icon .hor_icon {
    	display:none;
    } 

    and adjust the top: -10px; to suit.

    Best regards,
    Mike

    in reply to: issue with update to Enfold 6 #1462504

    Hi,
    Glad Ismael 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

    Hi,
    Please see our documentation about using a Child Theme, I see that you have three versions of the theme installed, I assume that you added each into a different directory, is that how you did it?
    Updating the theme is not that important right now, we can move forward with just a staging site.

    Best regards,
    Mike

    Hi,
    To add the classes to the menu items, first enable them in the drop down at the top of your menu screen “Screen Options” and checking the CSS Classes box, which will show the classes to the menu items.
    Enfold Support 6340
    I added the shortcode in a code block element, in a color section so the page would have a full image background, but you could add the code block element to the top of your page.
    Enfold Support 6342
    Enfold Support 6317

    Best regards,
    Mike

    Hi,
    I’m glad that you have talked to your developer and learned the placement of the PHP function to execute shortcode like [av_layerslider id=…], but when I checked enfold/config-templatebuilder/avia-template-builder/template-builder.php I didn’t find it, nonetheless this is the type of PHP code that I was talking about.
    It is ok though, I don’t need to see the code used because I would rewrite it to be added to the WP Code plugin, unless you choose to add a Child Theme so the PHP code will be different and you won’t have this issue in the future when you update. There is no additional charge for this, please let us know when the staging site is created.
    Please note that I was recommend that you update the theme to v6.0.2 not updating the LayerSlider plugin, it is bundled into the theme, so you can only update the theme.
    For reference please see our LayerSlider documentation here.

    Best regards,
    Mike

    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: Mega Menu #1462440

    Hi,
    Thank you for your patience, but the login to your site is not admin so we can’t see the theme or menu settings. but to have some items under like this:
    Enfold Support 6331
    you will need to use the This column should start a new row option:
    Enfold Support 6334
    if you have multiple menu columns like this:
    Enfold Support 6336
    you will need to drag the new row under those like this:
    Enfold Support 6338
    If you still have trouble, update the login to admin and we can help.

    Best regards,
    Mike

    in reply to: How to change the symbols of the arkkordeon toggles? #1462439

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .togglecontainer p.toggler {
    	border-top: 1px solid #000 !important;
    	border-bottom: 1px solid #000 !important;
    }

    Best regards,
    Mike

    in reply to: Probleme mit Enfold #1462411

    Hi,
    I was reading you post again and it look like you wrote that you bought the theme from “Total GPL” this would be a “nulled” version of the theme.
    The only legal place to buy the theme is at Theme Forest, so this will explain why you can not update it, because “Total GPL” removed the update feature, so you will need to purchase a legal license here and then manually update as I posted above.

    Best regards,
    Mike

    in reply to: Probleme mit Enfold #1462409

    Hi,
    Thank you for your patience, I believe that your current version 5.01 had an issue back when it was released, and as I recall you will need to manually update it, and now that you have a working Token future updates will update correctly.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Negative margin not working #1462408

    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

Viewing 30 posts - 481 through 510 (of 33,009 total)