Forum Replies Created

Viewing 30 posts - 121 through 150 (of 66,827 total)
  • Author
    Posts
  • in reply to: Vertically centered logo in the header #1490640

    Hey Angelo,

    Thank you for the inquiry.

    Please add this css code to adjust the alignment of the logo on all screen sizes.

    .logo, .logo a {
        display: flex;
        align-items: center;
    }
    
    .logo img.alternate, .logo .subtext.avia-svg-logo-sub svg {
        position: relative;
    }
    
    .logo .subtext.avia-standard-logo-sub {
        display: flex;
        align-items: center;
        height: 100%;
        width: 170px;
        position: absolute;
    }

    Screenshot-2025-10-28-at-12-47-31-PM

    Best regards,
    Ismael

    Hi,

    Thank you for the short clip.

    The issue is still not occurring on our end — we even tried zooming out the browser to emulate a larger screen. We recommend reaching out to the developers of the sorting plugin for additional assistance.

    Screenshot-2025-10-28-at-12-32-08-PM

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We may need to log in to the site to properly check the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Menu on iPad (Air) too big in landscape mode #1490637

    Hey RENZCOM,

    Thank you for the inquiry.

    Try to add this css code to adjust the header height in tablet landscape view:

    @media only screen and (max-width: 1366px) {
        .responsive.html_mobile_menu_tablet #top #header_main>.container .main_menu .av-main-nav>li>a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container {
            height: 90px;
            line-height: 90px;
        }
    }

    Best regards,
    Ismael

    in reply to: Change image size in blog post #1490636

    Hi,

    You need to remove this css code if you want the featured image to resize automatically based on screen size. This rule sets a minimum height of 630px for the image, preventing it from shrinking while resizing the window. It does preserve the aspect ratio using object-fit: cover.

    #top.single-post .fullsize .template-blog .big-preview img {
        width: 1200px;
        min-height: 630px;
        object-fit: cover;
    }
    

    Best regards,
    Ismael

    in reply to: Search icon not displaying on mobile #1490616

    Hi,

    @Jason: As mentioned in the previous thread, the search icon only works for the Top Header. It is disabled by default for the left and right sidebar/header layouts. If you need the search icon to display, you’ll have to modify the avia_append_search_nav function in the enfold/includes/config-enfold/functions-enfold.php file.

    Best regards,
    Ismael

    Hi,

    You can add the script to the child theme’s functions.php file.

    Best regards,
    Ismael

    in reply to: Two-tier (or two-row) navigation bar #1490613

    Hi,

    Thank you for the update.

    The menu actually looks better on a single line, but if you prefer adding a second row, try to add this css to limit the height of each menu item.

    #avia-menu > li {
        flex: 1 1 calc(25% - 10px);
        max-height: 24px;
    }

    Best regards,
    Ismael

    Hey milkrow,

    Thank you for the inquiry.

    Instead of editing the template, try adding this filter to the functions.php file:

    function avf_avia_post_grid_query_mod( $query, $params ) {
    	if ( is_tax( 'portfolio_entries' ) ) {
    		$query['posts_per_page'] = 18;
    	}
    
    	return $query;
    }
    add_filter( 'avia_post_grid_query', 'avf_avia_post_grid_query_mod', 10, 2 );

    Let us know the result.

    Best regards,
    Ismael

    in reply to: fold/unfold disable on mobile #1490611

    Hey dweddell,

    Thank you for the inquiry.

    Looks like you managed to work around this by creating a duplicate of the section with the fold/unfold option deactivated. If you still need to disable this feature on mobile, please try this css:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
    
      .av-fold-unfold-container {
        max-height: max-content !important;
      }
    
      .avia-fold-unfold-section .av-fold-button-wrapper {
        display: none;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Blog Overview – Image left, copy right #1490610

    Hi,

    Thank you for the info.

    We tried logging in, but the user account provided above does not exist. Please create a test page and provide valid login credentials so that we can check the modification.

    Best regards,
    Ismael

    in reply to: Please contribute and translate Enfold #1490563

    Hi,

    Thank you for this update @BigBatT. We’ll forward the files to our channel.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Video on home page #1490562

    Hi,

    Thank you for the update.

    Try adding this css code to remove the black bars and extend the video so that it goes underneath the header.

    #top .av-video-slide embed, #top .av-video-slide iframe, #top .av-video-slide object, #top .av-video-slide video {
        object-fit: cover;
    }

    Screenshot-2025-10-24-at-1-04-34-PM

    Best regards,
    Ismael

    in reply to: layerslider very small on mobile #1490561

    Hi,

    Great! Glad to know this has been resolved. Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the screenshots.

    We can’t reproduce the same issue on our installation. We tried selecting a filter, but the images remained the same. We even tried resetting the sorting and then selecting another filter, but the images still look the same. Which browser are you testing this with?

    Screenshot-2025-10-24-at-12-58-31-PM

    Best regards,
    Ismael

    in reply to: Search icon not displaying on mobile #1490559

    Hi,

    Thank you for the update.

    Where did you place the css code? We are not seeing the modifications in the document, but we can see that the following css rule is preventing the main menu from displaying on mobile view. You need to place the css we suggested below that rule.

    Screenshot-2025-10-24-at-12-55-46-PM

    For the style adjustments of the custom search, please contact the plugin developers.

    Best regards,
    Ismael

    in reply to: Blog Overview – Image left, copy right #1490558

    Hey Jables,

    Thank you for the inquiry.

    This layout is not available by default, but you can try using the Blog Posts element. Set Content > Select Entries > Blog Style to Single author, big preview pic, then add the following css code to place the featured image beside the post content.

    .av-alb-blogposts {}
    
    .av-alb-blogposts .post-entry {
        display: flex;
    }
    
    .entry-content-wrapper .big-preview.single-big {
        min-width: 30%;
    }
    
    .av-alb-blogposts .big-preview.single-big a {
        height: 100%;
    }
    
    .av-alb-blogposts .big-preview.single-big a img {
        object-fit: cover;
        height: 100%;
        max-height: 300px;
    }

    Best regards,
    Ismael

    in reply to: Image Title on Hover #1490556

    Hi,

    Great! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Video on home page #1490555

    Hey lara666,

    Thank you for the inquiry.

    The video is displaying correctly on our end. Have you tried using a different browser or computer?

    Screenshot-2025-10-24-at-12-36-20-PM

    Best regards,
    Ismael

    in reply to: Image Title on Hover #1490531

    Hi,

    We edited the functions.php file and adjusted the priority of the action hook. It should be working properly now.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    The images are now visible, but they’ve changed from square to rectangular. If you refresh the page, they appear square again.

    The images in the portfolio grid still look square when we checked. This is how the grid looks on our end:

    Screenshot-2025-10-23-at-1-48-23-PM

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, ImgBB, PostImages or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1490528

    Hi,

    We may need to inspect the site to properly check the issue. Please provide the login details in the private field and make sure that Appearance > Theme File Editor is enabled.

    Best regards,
    Ismael

    in reply to: layerslider very small on mobile #1490527

    Hey svweb,

    Thank you for the inquiry.

    Did you add this css code? It shifts the main container upward, causing it to overlap with the header.

    #main {
        margin-top: -150px!important;
    }
    

    This is how it should look normally without the css modification.

    Screenshot-2025-10-23-at-1-37-59-PM

    Try to replace it with this css code:

    @media only screen and (min-width: 768px) {
    
      /* Add your Desktop Styles here */
      #main {
          margin-top: -150px!important;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Masonry Blog Posts no longer sorting date correctly #1490526

    Hi,

    Thank you for the update.

    Looks like the script is working, but the isotope script still re-arranges the masonry items, placing the 4th item at the very end of the set. The isotope script is responsible for the masonry effect and sorting. Have you tried deleting that particular post (date August 13, 2025) and recreating it from scratch? You could try rephrasing the title a bit and adjust the image size.

    Best regards,
    Ismael

    in reply to: Search icon not displaying on mobile #1490525

    Hey AmyEdwards,

    Thank you for the inquiry.

    You can add the following css code to display the account and search icons on mobile view, but you’ll need additional style adjustments for the search field since you’re using a custom search option. We recommend reaching out to the script or plugin authors for additional assistance.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
    
      #top #header .av-main-nav>#menu-item-wc-account-icon {
        display: block !important;
      }
    
      #top #header .av-main-nav>.menu-item.menu-item-search-dropdown {
        display: block !important;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Image Title on Hover #1490524

    Hey sjahan,

    Thank you for the inquiry.

    We’ve made a few edits to the script — please try it again. Make sure to clear your cache before checking the page.

    /* remove image and link title attributes on hover */
    function remove_title_attr(){
    ?>
    <script>
    jQuery(document).ready(function($){
        $('#wrap_all a, #wrap_all img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');
    
    

    Best regards,
    Ismael

    in reply to: How do I break an H2 heading into two lines? #1490523

    Hey John,

    Thank you for the inquiry.

    Have you tried adding br tags between the lines or words?

    Example:

    Hello <br /> There

    Let us now if you need more info.

    Best regards,
    Ismael

    Hi,

    Keep us posted. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Animate on Scroll #1490491

    Hi,

    Thank you for the update.

    Sorry, but this will require significant modifications to the theme. You will need to either find a third-party plugin or hire someone to implement these features for you. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Add Time Stamp to CSS files #1490490

    Hi,

    Thank you for the update.

    Unfortunately, that would require modifications beyond the scope of our support. It’s not as simple as prepending a timestamp to the files. You may need to look for a plugin or hire a freelance developer to implement the changes for you. Thank you for your understanding.

    Best regards,
    Ismael

Viewing 30 posts - 121 through 150 (of 66,827 total)