Hey icarogioiosi,
Thank you for the inquiry.
The size of the logo will depend on the uploaded image, but we can adjust it with css. Unfortunately, there are no available options to adjust the width of the menu or the line spacing between the menu items, but again, we can adjust these with css.
Example:
.html_header_sidebar #top #header {
width: 400px;
}
.html_header_left #main {
margin-left: 400px;
}
.html_header_sidebar #header .av-main-nav > li > a {
line-height: 2em;
height: auto;
padding: 30px 3px;
margin: 0 auto;
}
Best regards,
Ismael
Hey jccardaillac,
First ensure that your menu screen options css classes are enabled:

then add a new custom link menu item to the middle of your menu items and add the class menu-row-separator

then add this css to your Quick CSS in the theme options:
@media only screen and (min-width: 768px) {
.menu-row-separator {
display: block;
clear: both;
height: 0;
padding: 0;
}
#avia-menu > li, #avia-menu > li > a {
height: 47px !important;
line-height: 40px !important;
}
}
.menu-row-separator a {
display: none !important;
line-height: 0;
}
this is the expected results:

adjust the menu item heights to suit your header height.
Best regards,
Mike
Bonjour,
Je souhaite créer 3 niveaux de menu est ce possible ? voir le l image dans la partie privée
Au premier niveau voir au dessus de l’en tête:
– un lien pour site Français et anglais
– des liens pour des pages génériques
Ensuite le logo de l’entreprise à Gauche puis 2 lignes de 5 menus pouvant être déroulants.
Peut être dois je poser une seconde question ou déjà présente sur le support mais comment créé t on le site en 2 langues différentes le plus simplement possible ?
Cordialement,
Hello Mike,
exactly, but mobile looks different. I would have liked to swap the image and text here.
BR Matthias
Hi,
Perhaps I don’t understand, I see this on mobile:

and this on desktop:

I don’t have a solution to move your secondary menu on the left side of the burger menu.
Best regards,
Mike
Hey Amanda Stansfield,
Thank you for your question, I looked up your developer email address, as posted above, and found that the support forum license expired in 2016.
So typically you would need to go to your Theme Forest account and renew your support. But since you don’t have a Theme Forest account you will need to create one and purchase a new theme license. Then register your Purchase Code here. Then log into the support forum and open a new thread.
I recommend checking the box “Extend support to 12 months” it is only a few dollars more and will give you a year of support.

By having your own account you will not have to worry about tracking down your old developer to update in the future.
Also note that this is cheaper than renewing support
Best regards,
Mike
Good afternoon,
I have a small problem again.
I would like to change the order on the following page Mobile so that in the container
1. heading
2. text
3. image
is displayed. I have already specified an individual order and then the corresponding positions, but it does not implement this.
What is the error here?
The site is under construction, therefore not visible to the public.
You can download a JPG image from the following link:
https://wetransfer.com/downloads/5fe5f19f5cd2eb83a88340c3bbc834b720241116193041/cc2b8820679df52bcee3aa06bea0501220241116193103/9ea811?t_exp=1732044641&t_ lsid=92841b41-560e-4693-9b1b-7b2c092d5f25&t_network=email&t_s=download_link&t_ts=1731785463
The footer is not as wide as the screen but only as the page content, so it is not visible under the menu.
Hi,
I’m unable to view your site, I get the error: 555 Security Incident Detected Your request was blocked.
please disable your security.
Or assuming that your button has the class topKnap changes the padding here:

Best regards,
Mike
Hey Munford,
Thank you for your patience, but on your page /films/norad-human-rights/ I do not see any anamion, I only see the images loading as they are called.
Try clearing your browser cache ad checking again. You could try disabling your wp-rocket plugin to prevent a delay in the images showing which nay seem as a anamion to you.
Best regards,
Mike
Hi,
Please use the “hide header” & “hide footer” options for a blank page, I did this for you and it now works:

Best regards,
Mike
Hi,
There are two places to add two logos, one is the transparent logo (before scroll) and one for the normal logo (after scroll) when a transparent header is used. Typically you would choose different logos with different colors.
You will need to enable the Transparency Options to see the setting for the transparent logo

Please check that you have added two logos:

Best regards,
Mike
Hi,
I also note that my previous screenshot had the shortcode in the “navigation” field:

and now it is in the URL field:

perhaps that is the issue.
Best regards,
Mike
Hi,
When not logged in I don’t see the Fibo Search, but I do when logged in.
It looks like the shortcode was added to the URL of the menu item:

I don’t know how the plugin works but this seems odd, I also don’t see any console errors.
I also see that you are using WP Rocket which might be showing a cached version of the page when not login, try disabling it and other plugins to see if that helps, ootherwise ask the Fibo Search authors for advice, we don’t know about this plugin and are limited to support for third party plugins.
Best regards,
Mike
I recently took over hosting an Enfold-based site. After transferring the site from the previous host I noticed that the page headers weren’t working as they had previously.
When working correctly, the header’s background was initially transparent. The SVG logo was visible in white (against a dark image background) and the menu items were also visible in white. When a user began to scroll down the page, the header background would fill white, the logo would colorize, and the menu item lettering would switch from white to black.
What I’ve noticed now is that:
a. After the initial load the logo is fully transparent. It’s there, but you can’t see it.
b. Upon scrolling, the header stays fully transparent, the logo stays invisible, and the lettering stays white (there is no transition upon scrolling).
Any help straightening this out would be greatly appreciated.
just remove the portfolio from those snippets:
function avf_template_builder_content_postimage_mod($content = ""){
if( is_singular('post') && ( '1' != get_post_meta( get_the_ID(), '_avia_hide_featured_image', true ) ) ) {
$featuredImage = get_the_post_thumbnail( $the_id, 'original' );
$content = '<header class="entry-content-header"><div class="page-thumb">' .$featuredImage. '</div></header>' . $content ;
}
return $content;
}
add_filter('avf_template_builder_content', 'avf_template_builder_content_postimage_mod', 10, 1);
//image-sizes: widget, square, featured, featured_large, extra_large, portfolio, portfolio_small, gallery, magazine, masonry, entry_with_sidebar, entry_without_sidebar, medium, large
function custom_post_featured_image_link( $image_link, array $current_post, $size ){
if( is_singular('post') && ( '1' != get_post_meta( get_the_ID(), '_avia_hide_featured_image', true ) ) ) {
$image_link = get_the_post_thumbnail( $current_post['the_id'], 'original' ); /**** or medium, square etc. ***/
}
return $image_link; // echo $image_link; if you want to get rid of link function
}
add_filter( 'avf_post_featured_image_link', 'custom_post_featured_image_link', 10, 3 );
Hi Ismail,
Thank you for your answer. I find the slider via the Avia Layout more convenient for editing images. To which I use several sliders. I am looking for other solutions.
Thank you.
Best regards
Mick
or just set the gallery in ismaels snippet to false:
gallery: { enabled: false},
function ava_popup_init() { ?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.av-popup-no-nav, .av-popup-no-nav a').magnificPopup({
type: 'image',
midClick: true, // Allow opening popup on middle mouse click
gallery: { enabled: false},
});
});
</script>
<?php }
add_action('wp_head', 'ava_popup_init');
or you take – mikes snippet to redeclare these formats – but with setting of crop to false!
( but the solution above is more elegant, and also shows the full resolution )
function avf_customization_modify_thumb_size( $size ) {
$size['entry_without_sidebar'] = array( 'width' => 845, 'height' => 9999 , 'crop' => false );
$size['entry_with_sidebar'] = array( 'width' => 1210, 'height' => 9999 , 'crop' => false );
return $size;
}
add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );
the limitation value is not the width value – so you got smaller images. This is as Mike mentioned for the new images only – but if you recalculate the thumbs even the older posts will have that new size (without cropping)
This reply has been marked as private.
try both inside your child-theme functions.php:
function avf_template_builder_content_postimage_mod($content = ""){
if( is_singular('post') || is_singular('portfolio') && ( '1' != get_post_meta( get_the_ID(), '_avia_hide_featured_image', true ) ) ) {
$featuredImage = get_the_post_thumbnail( $the_id, 'original' );
$content = '<header class="entry-content-header"><div class="page-thumb">' .$featuredImage. '</div></header>' . $content ;
}
return $content;
}
add_filter('avf_template_builder_content', 'avf_template_builder_content_postimage_mod', 10, 1);
//image-sizes: widget, square, featured, featured_large, extra_large, portfolio, portfolio_small, gallery, magazine, masonry, entry_with_sidebar, entry_without_sidebar, medium, large
function custom_post_featured_image_link( $image_link, array $current_post, $size ){
if( is_singular('post') || is_singular('portfolio') && ( '1' != get_post_meta( get_the_ID(), '_avia_hide_featured_image', true ) ) ) {
$image_link = get_the_post_thumbnail( $current_post['the_id'], 'original' ); /**** or medium, square etc. ***/
}
return $image_link; // echo $image_link; if you want to get rid of link function
}
add_filter( 'avf_post_featured_image_link', 'custom_post_featured_image_link', 10, 3 );
these snippets have that check if on the editor mode – on the right side in the layout box “show/hide featured image on single post”
so they will respect that setting.
PS that comment : echo $image_link; if you want to get rid of link function. –
Most people don’t like the fact that the featured image in single posts has a link to their own post. I think so too – that’s superfluous
But – removing that link function will move the feature image out of the article container. That means the image is above all – title is beneath.
So it might be better to have that link – and preserve enfold structure – but hamper only the pointer-event on that image
As it is a new page I do not need the uploaded images, there are just for testing-purposes. So it would be okay when only the “new” uploads would fit :)
please do not redefine the images_sizes!
Just wait a little i test my solution first …
see post : https://kriesi.at/support/topic/full-image-on-single-post/#post-1471388
Thanks.
But it did not work either.
I also re-uploaded the Thumbnail but the image eis still cropped on the post-detail-page.
Hey bb,
Thank you for the inquiry.
Try editing the Icon element and apply a Custom CSS Class (e.g., av-popup-no-nav) in the Advanced > Developer Settings toggle. Then, add this code to the functions.php file:
function ava_popup_init() { ?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.av-popup-no-nav, .av-popup-no-nav a').magnificPopup({
type: 'image',
midClick: true, // Allow opening popup on middle mouse click
navigation: {
next: false, // Disable next arrow
prev: false // Disable prev arrow
}
});
});
</script>
<?php }
add_action('wp_head', 'ava_popup_init');
Best regards,
Ismael
bbParticipant
I’m using the lightbox modal window on the site, but I have one specific case where we need to modify the function slightly. We are using an icon to open images in the lightbox and in that case we don’t want the arrows that click through other images on the page. Just want to open the one image and then close it.
We are using the arrows in other cases so we can’t disable it globally.
Is there a code snippet, or a specific class that we could use to disable the arrows selectively?
Thanks!
Hi,
Please reset your localhost and import the demo to your localhost and check that it is imported correctly.
If it doesn’t import there would be a setting that is not correct in your localhost, your loc needs to have access to the internet.
OVH blocks our IP address so the images will not import, your localhost or other webhosts should not block our IP.
Best regards,
Mike