Forum Replies Created

Viewing 30 posts - 13,471 through 13,500 (of 66,745 total)
  • Author
    Posts
  • in reply to: importing font #1309085

    Hi,

    Great! Glad to know that this is fixed. Please do not hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Mobile menu Background #1309084

    Hi,

    Thank you for the update.

    Try to use this css code to change the background color of the mobile menu container.

    .html_av-overlay-side #top .av-burger-overlay-scroll {
    	background: #ffff;
    }
    

    You can adjust the font or style of the mobile menu items in the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    in reply to: Map Plugin to Display Client Project Portfolio #1309083

    Hey So Evolve,

    Thank you for the inquiry.

    Which plugin are you currently using? You can find a few map plugins in the repository with different range of options and features.

    // https://wordpress.org/plugins/tags/google-map/

    Best regards,
    Ismael

    in reply to: Masonry alignment #1309081

    Hey Sebastian,

    Thank you for the inquiry.

    What is the current masonry size settings? Please post the site details in the private field including the link to the page with the masonry element so that we could check it properly.

    Best regards,
    Ismael

    in reply to: Change inner content width #1309079

    Hi,

    Would you mind posting the site details? We may need to login to the dashboard and check the css code. Please post the info in the private field.

    Best regards,
    Ismael

    in reply to: Avatar Disappered bbpress #1309065

    Hey amyteslin,

    Thank you for the inquiry.

    Looks like the avatar container is empty.

    <span class="bbp-author-avatar"></span>
    

    Did you disable the default avatar option, or did you modify any of the forum templates?

    The following documentation and plugin might help.

    // https://codex.bbpress.org/getting-started/faq/user-avatars/
    // https://wordpress.org/plugins/basic-user-avatars/

    Best regards,
    Ismael

    in reply to: Turn off video lightbox ONLY #1309064

    Hey Antonio,

    Thank you for the inquiry.

    You may need to modify the template file directly and add the noLightbox class name or attribute to the links containing the video URL. This should disable the lightbox for those links.

    Best regards,
    Ismael

    in reply to: Content Slider – Slider controls missing #1309062

    Hi,

    No problem. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    It is possible that the form is using a different date picker script or library. You have to contact the plugin or script authors regarding this issue as it is beyond the scope of support.

    Thank you for your understanding.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We could decrease the duration of the scrolling animation but changing the color of the section to something else might require a custom script, which we will not be able to provide here. To adjust the duration, edit the js > avia.js file and look for this code around line 809:

    duration = data.duration || 1200,
    easing = data.easing || 'easeInOutQuint';
    

    Set the duration accordingly.

    Best regards,
    Ismael

    in reply to: Responsive issue (bug?) with accordion element #1309058

    Hey goldengate415,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue? We cannot find the border and the contact form looks perfectly fine as shown in the screenshot below.

    Screenshot: https://postimg.cc/8sGM3SWM

    Best regards,
    Ismael

    in reply to: Different navigation for a page. #1309057

    Hey peterolle,

    Thank you for the inquiry.

    1.) You can use a plugin to control the visibility of the menu or the items within it.

    // https://wordpress.org/plugins/menu-items-visibility-control/
    // https://wordpress.org/plugins/zen-menu-logic/

    2.) You can find the “center logo, split menu” and more header layout options in the documentation.

    // https://kriesi.at/documentation/enfold/header/#header-widget-position

    Split menu: https://kriesi.at/documentation/enfold/menu/#toggle-id-145

    Best regards,
    Ismael

    in reply to: Portfolio Grid order #1309055

    Hey merryng,

    Thank you for the inquiry.

    The portfolio post type does not support the page order option by default, but you can enable it manually. You can add this filter in the functions.php file to enable the page attributes for the portfolio items.

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    

    Make sure to set the “Order by” settings to “Page Order”.

    Best regards,
    Ismael

    in reply to: Portfolio grid hover like masonry grid hover #1309040

    Hi,

    Looks like adjusting the transition is not helping but applying a maximum height does. Did you disable the portfolio grid animation? We added this css code.

    .grid-sort-container .grid-entry {
        max-height: 279px;
    }
    

    Best regards,
    Ismael

    in reply to: Shop Banner on mobile #1309038

    Hey aliciapotts,

    Thank you for the inquiry.

    You can use this css code to adjust the height of the banner on mobile view.

    @media only screen and (max-width: 767px) {
    #av_product_description {
        max-height: 172px;
    }
    
    #av_product_description .av-parallax {
        height: 100% !important;
        top: 0 !important;
        transform: translate3d(0, 0, 0) !important;
    }
    }

    Best regards,
    Ismael

    in reply to: Color Section with columns #1309037

    Hey davs74,

    Thank you for the inquiry.

    You can start by creating 2 rows with three 1/3 columns each. Edit the first column in the row, enable the Equal Height Columns option and remove the Space between columns. You should also enable the Custom top and bottom margin and keep the top margin to 0. You can then add a few css code to set a minimum height for the columns.

    Best regards,
    Ismael

    in reply to: Content Slider – Slider controls missing #1309034

    Hey jwidmann,

    Thank you for the inquiry.

    The slider arrows or navigation are not displaying because of this css code.

    .avia-smallarrow-slider-heading {
        display: none!important;
    }
    

    Did you install a plugin for custom css code?

    Best regards,
    Ismael

    in reply to: Startup Business Demo & WPML not working #1309028

    Hey cristinapizzato,

    Thank you for the inquiry.

    How did you translate the pages? Did you follow the instructions in the following documentation?

    // https://wpml.org/documentation/theme-compatibility/enfold/

    Best regards,
    Ismael

    in reply to: Mobile device display order #1309024

    Hi,

    The code in the Quick CSS field is saved or added in the stylesheet located in the wp-content > uploads > dynamic_avia folder. The theme loads this file along with other stylesheets.

    Since we cannot access the site, please set the builder to debug mode, copy the actual shortcode from the debug mode field just below the advance layout builder and post it here using pastebin or using the same code sharing tool (controlc) that we used above.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: Unique title and description on pagination pages! #1309023

    Hi,

    The login token is no longer working. Please generate another so that we can access the site again. Removing the value of the title field should fix the issue because when the field is empty, the function avf_add_page_number_to_title will not be overridden.

    Best regards,
    Ismael

    in reply to: Tab Section problem, doesnt show full content #1309022

    Hi,

    you will realize that there is a huge blank space on top of this other tab

    Try to set the Content height to the second option. The space is created because it forces the same height for all tabs. This option only works well if you know that the content will actually have the same height or if you don’t mind a little space on other tabs with shorter content.

    Best regards,
    Ismael

    in reply to: BBPress can't create new topics #1309020

    Hi,

    Yes, it is fine to switch the compression settings off temporarily. You could switch it back when you are done with the site configuration.

    Best regards,
    Ismael

    in reply to: Autorotate Horizontal gallery #1308781

    Hey FamalcoGroup,

    Thank you for the inquiry.

    Have you tried using the Easy Slider or the Partner/Logo Element? These sliders have an auto rotation option by default unlike the horizontal gallery element.

    Best regards,
    Ismael

    in reply to: Change inner content width #1308779

    Hey Sebastian,

    Thank you for the inquiry.

    We may need to check the site or inspect the elements in order to understand the issue. Please post the site URL in the private field, and toggle or temporarily disable the Enfold > Performance > File Compression settings. Have you tried checking the site on incognito mode?

    Best regards,
    Ismael

    Hey joelnewcomer,

    Thank you for the inquiry.

    Have you tried to manually add the svg image using a text or code block? This way you will be able to define the width and height attribute of the svg image directly.

    Best regards,
    Ismael

    in reply to: Background image hides content after updating #1308776

    Hi,

    Thank you for the update.

    Looks like a css or animation issue. Try to add this css code to set the opacity of the color section container.

    .js_active .av-minimum-height .container {
       opacity: 1;
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Button row customization #1308774

    Hi,

    Thank you for the inquiry.

    It might be due to the border. Please try to replace the css code with the following.

    .avia_button_background {
        opacity: 0 !important;
    }
    
    .avia-button:hover {
        opacity: 1 !important;
        border-color: transparent !important;
    }

    Best regards,
    Ismael

    in reply to: Custom Post Type Display #1308762

    Hey getfletch,

    Thank you for the inquiry.

    Unfortunately, you cannot modify the archive pages using the advance layout builder (ALB). You have to modify the template files directly (archive.php, taxonomy-custom-post-type-name.php etc). Another solution is to create a page using the ALB, then redirect the archive or category page to it.

    Best regards,
    Ismael

    in reply to: Just portfolio item from demo #1308760

    Hey Knutnik,

    Thank you for the inquiry.

    This is not possible but we can give you the shortcodes for that particular page. The shortcode can be added in the debug mode field of the advance layout builder. You have to enable debug mode first.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    After enabling it, just paste this shortcode in the debug mode field.

    // https://pastebin.com/L1qSqjMJ

    Best regards,
    Ismael

    in reply to: Sorting "You might also like" #1308756

    Hi,

    Unfortunately, this will require significant amount of modification that is not included in the scope of support. You can hire a freelance developer or contact our partner Codeable for this kind of customization.

    Best regards,
    Ismael

Viewing 30 posts - 13,471 through 13,500 (of 66,745 total)