Hi,
is there a way to get the colums closer together on desktop view?
Link on private content.
Thanks in advance!
Thank you!
I needed to make a second row for the mobile view, since I wanted the background image to be fixed. But that didn’t work on mobile.
Topic can be closed, i’m happy and thankful :)
Hi,
Then you have to change the anchor in the mobile menu, since the browser will stop at the first ID it finds. An ID should only appear once on a page, even though one is hidden.
Best regards,
Rikard
Hey Blaise,
Thank you for the inquiry.
You can add this css code to center align the images in the footer container:
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#top #footer>.container>.av_one_fifth:first-child {
width: 90%;
padding-top: 10px;
margin: 0 auto;
float: none;
margin-bottom: 20px;
}
#top #footer>.container>.av_one_fifth:last-child {
width: 60%;
margin: 0 auto !important;
float: none;
}
}
Best regards,
Ismael
i know that this is an older topic – but with that new logic to show only Cat A and Cat B if both is true. Filter does not work as expected.
It shows the posts of that Category which has a post.
Hey Scott,
Thank you for the inquiry.
You cannot directly control the volume of the video on mobile phones, especially on iOS devices. You will need to use the physical buttons of the device to adjust the volume. However, since the video is set to autoplay, it initially plays muted. You have the option to disable autoplay, unmute the video, and allow users to manually play it.
Best regards,
Ismael
Hi,
Thank you for the update.
You can adjust the value of top and left property on smaller screens and specify the height of the column. We adjusted the css code a bit:
@media only screen and (max-width: 989px) {
/* Add your Mobile Styles here */
#top .av-custom-header-column .flex_cell_inner {
height: 400px;
}
#top .av-custom-header-column .avia_textblock {
right: -50px;
top: 50px;
}
}
Best regards,
Ismael
Hi Folks:
I used your CSS to display captions below gallery thumbnails, and it does work to do that. HOWEVER the caption text will not wrap. If the length of the caption text is longer than the thumbnail image is wide, instead of wrapping the text, the text stays on the same line pushing the container width out to match. This in turn causes the thumbnail image to be wider and proportionately taller, which throws everything out of whack.
What CSS can I apply to #top .avia-gallery .avia-gallery-thumb a:after that will allow content: attr(title) to wrap and not push the image container wider??? In case it’s relevant, I’m using Gallery Style: Small Thumbnails.
Thank you!
Scott
-
This topic was modified 2 years ago by
scotthco.
Hi,
I believe that you are referring to the Widget Navigation Menu,

to add the icons to those menu items add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#menu-footer-menu li.menu-item > i ~ a {
display: inline-block;
}
#menu-footer-menu li.menu-item > i:before {
color: #fff;
}
Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor, if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:

then add this code and save. Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
function add_icon_to_widget_menu_items() { ?>
<script>
document.addEventListener("DOMContentLoaded", function() {
const menuItems = document.querySelectorAll('#menu-footer-menu li');
menuItems.forEach(function(item) {
let classes = item.className.split(/\s+/);
let iconClass = classes.find(c => c.startsWith('menu-item-icon-'));
if (iconClass) {
let iconName = iconClass.replace('menu-item-icon-', '');
item.innerHTML = '<i class="fa ' + iconName + '"></i> ' + item.innerHTML;
}
});
});
</script>
<?php
}
add_action( 'wp_footer', 'add_icon_to_widget_menu_items', 99 );

Best regards,
Mike
For some reason, my worded menu on a Desktop device is now gone, and only the “burger” type of menu shows up. How do I show my worded menu again on a Desktop?: https://AbogadoNotarioOnline.com/
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi
I have column link enabled and hover effects disabled on the main element as I want to define my own .
Inside layout-wholebox, I have two divs with custom classes layout-heading and layout-image
The hover effect for layout-heading below works, however the one for layout-image does not. Layout-image is an image.
I think the issue may be related to it being an image.
I’ve tried with/without the image being linked and have disabled linked image effects under enfold>advanced styling
#top .layout-wholebox:hover .layout-heading {
background-color: #ea6a02 !important;
transition: 0.4s ease-in-out !important;
}
#top .layout-wholebox:hover .layout-image {
transition: opacity 0.4s ease-in-out !important;
background: #151414c2 !important;
}
Help would be appreciated.
Also wondering if this is efficient use of CSS to create the effect.
Thanks
Hello,
I try to display a specific page only on mobile and diplay a message : “thank you to connect you on mobile to display this page”
I past this code in my page, it’s hidden if i’m on desktop for example, but my message does not appears.
Do you know why ?
<!DOCTYPE html>
<html lang="fr">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vérification d'accès via mobile</title>
<style>
#message {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
font-size: 24px;
z-index: 99999; /* Met le message au premier plan */
}
</style>
<script>
window.onload = function() {
// Vérifie si l'utilisateur accède à la page depuis un téléphone mobile
var isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
if (!isMobile) {
// Affiche le message si l'utilisateur n'accède pas depuis un téléphone mobile
document.getElementById("message").innerHTML = "Ce site est adapté pour les téléphones mobiles, merci d'y accéder via votre smartphone.";
document.getElementById("message").style.display = "block"; // Affiche le message si nécessaire
} else {
// Affiche le contenu de la page s'il est consulté depuis un téléphone mobile
document.body.style.display = "block";
}
};
</script>
<body style="display: none;">
<div id="message"></div>
</body>
</html>
Thank you for your help
-
This topic was modified 2 years ago by
greg47.
Hi,
I want an image to be surrounded by text. For example the picture should be in the middle of the right side of the textbox, or on top of the right side.
How can this be done?
Best regards :)
thank you very much!
The left column disappears on mobile.
I made the background-image and the textblock fixed. Looks great on desktop, but doesn’t work on ipad. Would you kindly check?
Hoe can I get the columns closer together?
-
This reply was modified 2 years ago by
northorie.
-
This reply was modified 2 years ago by
northorie.
Hi,
I am having problems with the mobile version of my menu. I have an anchor set up on one of the menu links and it works fine on desktop but not on mobile. The anchor appears in the menu item services.
Please advise how I can fix this.
Thank you
Hi,
This is due to css specificity so typically the h1 has a added class for color & font like .main_color h1 so to over ride this your css should be like .main_color .hero-text h1, an easy way around this is to add the ID #top to any css you are having trouble with like #top .hero-text h1.
If you have further trouble try making a live site and link to your page so we can examine the classes used in your situation.
Best regards,
Mike
This reply has been marked as private.
Hi,
Thank you for the update.
We adjusted the code in the Quick CSS field a bit.
#top #header #header_main .widget {
position: absolute;
right: 50%;
transform: translateX(-50%);
padding: 0;
margin-top: -3px;
padding-left: 10px;
}
Best regards,
Ismael
Hi,
1: try changing the date format at WordPress ▸ Settings ▸ General ▸ Date Format
2: Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
function avia_add_social_share_link_arguments($args) {
if (isset($args['square-x-twitter'])) {
$args['square-x-twitter']['label'] = __("Share on X", 'avia_framework');
}
if (isset($args['twitter'])) {
$args['twitter']['label'] = __("Share on X", 'avia_framework');
}
return $args;
}
This will probably not show in German, feel free to adjust “Share on X” in the code above to German
3: try this css:
#top #socket .social_bookmarks .social_bookmarks_mail {
display: none;
}
4: try this css:
#top .avia-post-nav {
display: none;
}
Please note that we kindly ask that each thread is for a single topic, it is hard to manage threads with many questions, typically it causes confusion when other Mods try to help or when clients answer but are not so clear, Thank you for your patience and understanding and for using Enfold.
Best regards,
Mike
Hi Support,
I am using your Enfold theme on a website and I have an issue where video has no sound on ALL browsers on my iPhone (Safari, Chrome, Firefox).
On my iPad the same video DOES have sound using Safari and Firefox, but NO sound using Chrome.
The sound plays correct on all desktop browsers.
Please let me know if there is a way to fix this issue.
Thanks
Scott
Hi,
You can do that by adding the same CSS inside of a media query:
@media only screen and (max-width: 767px) {
#top .av-custom-header-column .avia_textblock {
padding: 40px 20px;
background: white;
position: absolute;
right: -50px;
top: 50px;
}
}
Then change the values to fit your needs.
Best regards,
Rikard
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Great, I’m glad to hear that it’s working as it should now. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hello,
I’m working on this page https://www.romacittaperta.com/premi/ I added some custom CSS to get large spaces inside the lines, but in the last one I was forced to add a “dot” to have the same height of the other lines. Can you fix this bug?
Furthermore, viewing the table on mobile is really inconvenient for users. Would it be possible to compact it as if it were viewable as if the user activated the Chrome desktop view flag? Basically I would like to get a result similar to the following screenshot https://app.box.com/s/r33fkdwdvfag0x9nyc6obl8ixy0p1rtw
In reality the need to compact the mobile view is present in many other pages, homepage for example, is there a way to find an approach that can be used extensively on all pages? If necessary, I am available to create 2 versions of the same page, one that can be activated from desktop/tablet and one for smartphones. The standard approach would be to activate 2 versions of each color section present on the page, but this is not good because it would penalize page loading times
Thanks in advance for your assistance
Andrea
Hey arklink,
I see that you are running an old version of the theme, could you try to update to the latest version (5.6.12) to see if that helps please? The update to 5.6.12 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Hi,
Please try this CSS instead:
#footer {
border-top: 20px solid white;
}
Best regards,
Rikard