Forum Replies Created
-
AuthorPosts
-
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; }Best regards,
IsmaelOctober 28, 2025 at 5:33 am in reply to: How can we make it so that every time we interact with the filter, the page load #1490639October 28, 2025 at 5:30 am in reply to: Pagination and items settings in taxonomy-portfolio_entries.php #1490638Hi,
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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHi,
@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,
IsmaelOctober 27, 2025 at 6:54 am in reply to: Alignment issues with “image-overlay overlay-type-external” on hover #1490614Hi,
You can add the script to the child theme’s functions.php file.
Best regards,
IsmaelHi,
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,
IsmaelOctober 27, 2025 at 6:49 am in reply to: Pagination and items settings in taxonomy-portfolio_entries.php #1490612Hey 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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHi,
Thank you for this update @BigBatT. We’ll forward the files to our channel.
Have a nice day.
Best regards,
IsmaelHi,
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,
IsmaelOctober 24, 2025 at 7:00 am in reply to: How can we make it so that every time we interact with the filter, the page load #1490560Hi,
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?
Best regards,
IsmaelHi,
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.
For the style adjustments of the custom search, please contact the plugin developers.
Best regards,
IsmaelHey 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,
IsmaelHi,
Great! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
We edited the functions.php file and adjusted the priority of the action hook. It should be working properly now.
Best regards,
IsmaelOctober 23, 2025 at 7:47 am in reply to: How can we make it so that every time we interact with the filter, the page load #1490530Hi,
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:
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,
IsmaelHi,
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,
IsmaelHey 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.
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,
IsmaelOctober 23, 2025 at 7:26 am in reply to: Masonry Blog Posts no longer sorting date correctly #1490526Hi,
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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelOctober 22, 2025 at 7:04 am in reply to: How to edit the Portfolio Items Category/Archive Template and Sidebar Settings #1490492Hi,
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,
IsmaelHi,
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 -
AuthorPosts








