this reduces the max width of all text blocks on this page:
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
.page-id-223 .avia_textblock {
max-width: 560px !important;
}
Hi mcraig77!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.home #main {
padding-top: 0!important;
}
Best regards,
Yigit
Hi Sal!
Please go to Enfold/includes folder and open helper-main-menu.php file and find
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);
and add your number right above it as following
echo "<div class='phone-no'>your number here</div>";
then add following code to Quick CSS in Enfold theme options under General Styling tab
div.phone-no {
position: absolute;
left: 30%;
}
Best regards,
Yigit
Width of the image is set to auto. That makes the browser calculate the width of the table.
You can fix it by changing the width of the image to 100%
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
.avia-highlight-col img {
width: 100%;
}
Hi Ester1234!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.single-post .big-preview.single-big { display: none; }
and post the link to your website if that does not work
Regards,
Yigit
Hi, I’m working on an Intranet solution where I’m using Enfold (witch by the way is great :) ).
A little about what I have done
First of I had to deactivate* the custom “prettyPhoto” (this because it did not allow the user to download the original image when right clicking the image in “lightbox-mode”). Then I installed the plugin “Lightbox Plus ColorBox” In addition. It now works as I want it to.
* js>avia.js file:
//activates the prettyphoto lightbox
// $(container).avia_activate_lightbox({callback:’avia_lightbox_callback’});
My problem is with the gallery
I am using Avia Layout Builder on the page, and I have used the Gallery (under Media Elements) which works great. The problem lays with the gallery and the lightbox. If I’m opening one image in a gallery (in a lightbox) it don’t show any next button. Therefore, you have to open up every single image like this.
I also tried to insert a standard WP-gallery in a Text Block, but this don’t work at all.
My temporary solution have been to insert regular images into a Text Block, and then the lightbox works perfectly. However, it is many images, and this is very cumbersome and not exactly smooth.
Do you have any suggestion on how to solve this problem?
It would be wonderful to use your gallery solution for this task, and much easier for others to operate!
This reply has been marked as private.
Hey!
It’s not possible to use portfolio filter across multiple portfolio pages. Someone created a feature request here: https://kriesi.at/support/enfold-feature-requests/ – (Click on “Popular”, page 14 and search for “AJAX Portfolio filtering over multiple pages”) but as you can see the idea is not popular enough and we’ll probably not implement this feature in the near future.
The portfolio filter will not pop up if a portfolio page just shows entries from one category – so if i.e. page 1 shows entries from 2012 and page 2 shows entries from 2013 no portfolio filter will be shown simply because it doesn’t make sense if there’re no categories to filter. However if the page contains entries from 2012 and 2013 the filter will be shown because the user can use it to select the entries from the 2012 or 2013.
Regards,
Peter
Hey Frank!
You can try to add this code to your child theme functions.php file (or enfold/functions.php):
add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 10, 15);
function avia_change_breadcrumb($trail) {
foreach($trail as $key => $data)
{
$search = 'ninja_forms_preview_page';
if(strpos($data, $search) !== false)
{
unset($trail[$key]);
}
}
return $trail;
}
The code should remove the ninja_forms_preview_page link from the breadcrumb trail.
Regards,
Peter
Hey,
I want to add a phone number to the header of my website, however, I don’t want to use the ‘phone number’ option on the enfold menu. I want to place the phone number in between the ‘iRepairIT’ logo and the menu. Anyone know how to do this?

Hi Josue,
I already have this plugin and set a description in it in every posts…so why won’t it work and display the enfold short code?
Kind regards
Hey!
I fixed it with some code in enfold/functions.php:
if(!function_exists('avia_translate_ids_from_query'))
{
function avia_translate_ids_from_query($query, $params)
{
$res = array();
if(!empty($query['tax_query'][0]['terms']) && !empty($query['tax_query'][0]['taxonomy']))
{
foreach ($query['tax_query'][0]['terms'] as $id)
{
$xlat = icl_object_id($id, $query['tax_query'][0]['taxonomy'], true);
if(!is_null($xlat)) $res[] = $xlat;
}
if(!empty($res)) $query['tax_query'][0]['terms'] = $res;
}
else if(!empty($query['post__in']) && !empty($query['post_type']))
{
foreach($query['post__in'] as $id)
{
$xlat = icl_object_id($id, $query['post_type'], true);
if(!is_null($xlat)) $res[] = $xlat;
}
if(!empty($res)) $query['post__in'] = $res;
}
return $query;
}
add_filter('avia_masonry_entries_query', 'avia_translate_ids_from_query', 10, 2);
add_filter('avia_post_grid_query', 'avia_translate_ids_from_query', 10, 2);
add_filter('avia_post_slide_query', 'avia_translate_ids_from_query', 10, 2);
add_filter('avia_blog_post_query', 'avia_translate_ids_from_query', 10, 2);
}
I’ll ask Kriesi to include it in the next update.
Best regards,
Peter
Hi,
I am switching an old blog to Enfold.
I have used the plugin http://wordpress.org/plugins/easy-add-thumbnail/ to use the first image of each post as a featured (no image set as featured in posts’s featured image field)
For the related post, I have selected the option : “Show Thumbnail and post title by default”
I do not have any image displaying on related post and have a weird pen icon floating…
See : http://goo.gl/eNnUqd
Could you help me having the first image of each post / featured image displaying in the round shape?
Thanks for your great support.
Olivia
I know the solution posted on other threads for getting product categories to show up as a menu option is to enable it under the “screen options”, but on my site, it is not listed. I’ve attached a screen capture.
It is very odd. I run two Enfold sites, and one site it is there, but this site is missing. I tried disabling plugins, and it still didn’t show up. I also disabled all our custom functions in the functions.php file in the child theme, and it still didn’t show up.
Any ideas?

Quick question I”m fairly new to enfold I attempted to locate the enfold/css folder no luck. Can you please help me locate the enfold/css folder. Thank you in advance
Hi
This is in response to the answer #262980, my topic was close and i am having trouble with the child theme.
https://kriesi.at/support/topic/portfolio-arrows-issue/
The child theme is installed, i changed the code on the functions-enfold.php but it doesn’t work. If i add the same file to the parent theme, it works. Is there maybe another code that i need to add so the child theme can read it?
thanks for your help
shanti
This reply has been marked as private.
Hello!
I’m having difficulties seeing the paste from word button in the visual editor in the Enfold theme and was wondering what the problem might be and why that is.
Thanks!
I have a problem.
I modified the wp-config.php file, and I did it wrong, so I “reset” the file, like it was before, but this message continue in the header:
Warning: session_start(): Cannot send session cookie – headers already sent by (output started at /home/pushclie/public_html/FCPV/wordpress/wp-config.php:1) in /home/pushclie/public_html/FCPV/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
How can I fixed this? The only modification I did was in the wp-config.php file, but I already undo all changes. Its like the original but the error messsage still appear.
Thanks
Hi,
Is there a way to prevent the thumbnail from displaying on the enfold latest news widget ?
Not all posts will have a featured image.
link here
thanks,
Colin
Hey!
As far as I know the youtube secondary links are ignored because of the way videos need to be embeded as backgrounds. I don’t know of any solution for that.
The images should be wider than they are tall in general and will adjust as needed. For example: http://kriesi.at/themes/enfold/files/2014/04/photodune-1219337-gavel-and-books-m-1500×430.jpg from the theme demo.
Cheers!
Devin
Hey Oscar!
Are you using the latest version of Enfold (2.7.1)?
Regards,
Josue
Hello –
I just purchased the Enfold theme and proceeded to try and create a couple of test pages.
But none of the pictures are showing up (either inserted via the Easy Slider or as an Image media element. I’ve tried different pages, no luck.
The test site is at http://crownskis.com/csc_test
I haven’t customized any CSS, this is out of the box.
Help please!
Thanks,
Josue,
Thanks for the help. Unfortunately, the popups are showing up behind the content. On my homepage, the screen turns slightly darker when I click the link, so the modal is apparently activated, but it doesn’t show up. On the FAQ page, half of the modal is hidden behind an accordion and the other half is visible.
I’ll play around with a few more plugins and (hopefully) find one that plays well with Enfold.
-Taft
Hey Taft!
That’s not possible with Enfold out of the box. Try with this plugin:
https://wordpress.org/plugins/anything-popup/
Regards,
Josue
Hey WaldenDesign!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
#top .social_bookmarks li a { font-size: 18px; }
Regards,
Yigit
Hello,
Are you using the latest version of Enfold (2.7.1)? have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
Josue
Hey!
You are using an old version of Enfold (2.5.4), please update to 2.7.1.
http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
Josue
I have installed the Enfold template at a new Bluehost location, and unlike my previous install at another provider, none of my install attempts have resulted in me being able to see the tool bar in the advanced avia editor. My option is to hard code in the HTML mode.
Has this been an issue for anyone else?
-
This topic was modified 11 years, 10 months ago by
tionetworks.
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
body .column-top-margin {
margin-top: 25px;
}
If this is not what you meant, please elaborate
Regards,
Yigit