Hey guys, I second this. I love enfold, but a simple thing as adding a custom logo is really a pain. Even an experienced CSS’er like me struggles with it. The header is not built in a flexible way. The logo acts strange and one has to add way too much custom code just to get it fixed. I notice the logo gets inline css code when uploading.
This would be a major improvement for a next update. Make the custom logo (which everyone does) simple and easy.
Way too many posts about people struggling with the logo.
Hey!
By default the xml dummy content will import 52 new pages and 4 portfolio entries. If it does not work on your website try to import the sql data directly into your database by using this backup: http://www.mediafire.com/download/46ijf2bt9m267qu/enfold-dummy.sql . You can use a tool like phpmyadmin to import the sql dump file.
Regards,
Peter
Recently someone asked in another thread about a shortcode for ‘basic’ boxes, and this is something I think would be really useful as a ‘general’ container type to support other content.
It seems to me the best solution would probably be to have some more options for the ‘promo box‘ shortcode as at present that is is quite plain. Here is a good example of the kind of styling I’d like to see supported:
Also, that same theme has some really nice variations on the Icon Box type too.
@dalen550 Although the site you mentioned is using a different theme (I did consider that one before I bought Enfold) you could do a similar look just using regular images and use the CSS animations to have them animate as they appear. Sure it wouldn’t have the rollovers, but it would still be pretty cool.
Hi!
Timeline border color is currently set to white. You can add following code to Quick CSS in Enfold theme options under Styling tab to change timeline border color
.main_color .avia-icon-list .iconlist-timeline {
border-color: #e1e1e1;
}
Regards,
Yigit
Hi Kriesi-Support-Team,
I’d be grateful, if you could help me with the following questions:
Question 1:
How should I modify style.css, if my logo dimensions are 600px * 156px (instead of 340px * 156px, as recommended in your Enfold Themes Options)?
Question 2:
Does there exist a maximum width for the logo?
Thanks in advance for your efforts!
Best,
Rainer
Hi guys,
I read the WordPress page on child themes and watched the video. Thank you.
Before I follow the directions in the video, I need to be completely clear on what to expect. I don’t want any surprises. I have an important question that is not answered in the video and I have not found answers for in the forum.
1. If I update the parent theme, functions.php (child theme) is loaded to the site in addition to the functions.php (parent theme). The functions.php file is an exception in the way child themes are treated…
2. So, this is not true of other php files such as register-admin-options.php. It seems in this case, the register-admin-options.php (child theme) will totally replace the register-admin-options.php (parent theme).
3. My question is, if this is true, what happens if…. an Enfold theme update includes an updated register-admin-options.php file? If the child theme is replacing that then it seems I would never get the updated register-admin-options.php file?
4. As I understand it, this would create the same problem I am trying to avoid and I’d have to manually update the file. Am I missing something?
I really need to understand this in detail. Please answer as completely as you can and then I’ll follow the directions in the video and get back to you with my experience.
Thank you, Jas
Urgent
-
This reply was modified 12 years, 2 months ago by
Jasmer.
Hi Enfold Team,
I’m encountering a weird issue with my site http://www.ferienwohnung24-garmisch.de. All page titles are formatted as H2 instead of H1. Could you please tell me how to fix this?
Thanks in advance,
Fabian
Would love to be able to do this : make those two 1/3 sections goes under the 2/3?

it’s possible by doing that:
Add the 2/3 and 1/3 column then insert a Text Block inside the 2/3 column. Edit the text block then add a column shortcode.
But it’s very hard to manage…
thanks
helle Dude and Josue
@Josue My site is not online yet…
But about the Breadcrumbs and as it do not works when we use pages as blogs : I removed it
Now my only problems is the active link whis is not highlight is the main and sub menu. I think it is normal because if i’m on post page the menu can’t know that because my main menu is only related to pages !
You gave us the possibility to build blogs inside pages (right, this is really pretry cool with masonry) but know you have to tell the mainmenu to deal with that…
Below, a screnshot of a page of my site that display a masonry blog content with multiple categories)

If i click on one post entry i go into a post and the highlight activelink menu do no work, it goes to a normal color…
-
This reply was modified 12 years, 2 months ago by
pako69.
Hi Kriesi-Support-Team,
it would be great, if you could help me with the following customization.
I’d like to place a tagline on the right hand side of my logo (My Header Type: “Fixed Header with Social Icons and additional Navigation”; My Logo Dimensions: 113x113px).
Up to now I’ve followed the instructions of the following thread: https://kriesi.at/support/topic/how-can-you-add-a-tagline-or-subheading-to-all-pages-for-the-enfold-theme/#post-203194. Allthough the tagline does appear in the header, great part of it is covered by the logo.
I would be grateful, if you could tell me, how to “push” the tagline to the right.
Thanks in advance for your efforts!
Best,
Rainer
I would really really really really really really … really really (REALLY) like to see some kind of loading indication for the fullscreen slider.
This is my version: http://goo.gl/97xb3
-
This reply was modified 12 years, 2 months ago by
DavyE.
Hi!
1) Normally Enfold will display the WPML flags in the top navigation menu. If you want to add the flags to the main menu add following code to the functions.php file (insert it at the very bottom of the file)
if(!function_exists('avia_append_lang_flags'))
{
//first append search item to main menu
add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 10, 2 );
function avia_append_lang_flags( $items, $args )
{
if ((is_object($args) && $args->theme_location == 'avia'))
{
global $avia_config;
global $sitepress;
$languages = icl_get_languages('skip_missing=0&orderby=custom');
if(is_array($languages))
{
foreach($languages as $lang)
{
$currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
$items .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>";
$items .= " <span class='language_flag'><img title='".$lang['native_name']."' src='".$lang['country_flag_url']."' /></span>";
$items .= "</a></li>";
}
}
}
return $items;
}
}
2+3) You can try to use a negative margin-top to re-position the flags (i.e. above the main menu links).
4) In the code I posted above replace
if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
with
if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
if(ICL_LANGUAGE_CODE == 'ar') $lang['country_flag_url'] = 'http://my-custom-flag.png';
and instead of http://my-custom-flag.png insert the url to your flag image.
Best regards,
Peter
Hi Ismael!
Of course I’m using an Enfold theme. The linked page should just visually represent the problem which I’ve described above and should be only illustrative.
Best regards,
Alex
Hi!
I think Medienvirus uses a custom theme now and does not use Enfold on his website.
Best regards,
Peter
Hey!
Yes, but unfortunately it requires additional work and a special post meta query and this is a customization which is beyond the scope of our support forum – I’m sorry. The “Incarnation” code is not compatible with Enfold.
Regards,
Peter
Hi!
Right now the breadcrumb doesn’t support multiple blog pages. You can set a default blog page (Enfold > Theme Settings) which will be used for the breadcrumb path. If you don’t set it a link to the category archive page will be shown.
Best regards,
Peter
Hi,
I am looking for a different solution with the WPML Flags on Enfold and I am looking for something like this:
1) No language text needed (i.e. English), just two flags side by side
2) Flags should go ABOVE the last menu item on desktop.
3) On iPhone / responsive, it should show BELOW the drop-down menu
4) Finally, there is a flag that I would like to change the image: sitepress-multilingual-cms/res/flags/ar.png – I know I can easily replace the image directly on that directory, but is there a better Quick CSS way to point that flag to a different image?
I’m not sure if these are all easy, but all help one can give is welcome.
Thank you.
Hi!
I recommend to download the default child theme here: http://kriesi.at/documentation/enfold/using-a-child-theme/ – install it like a standard theme, and activate it. Then paste the code into the functions.php file which can be found in the child theme folder.
Cheers!
Peter
This reply has been marked as private.
Hi Medienvirus,
very nice site you got there. Can I ask, how did you make the 5 round icons? In the “Analyze” and “Concept & Planning” row? Your response is greatly appreciated. Thank you!
Hi Mark!
The website you provided is not using Enfold.
Cheers!
Josue
Hi!
The code has a typo, please check (at the end):
http://www.daghlian.cynthiamoralez.com/wp-content/uploads/dynamic_avia/enfold.css?ver=1
Change those gt; by >
Regards,
Josue
Hi,
Can you post the link to your website please?
Regarding the breadcrumb issue, your best bet would be to use a redirection plugin (archive page > masonry page), like:
http://wordpress.org/plugins/simple-301-redirects/
Cheers!
Josue
Hi!
That’s expected, some of the images are only in the demo and not in the dummy:
Please Note: Most images in the theme demo are stock photos from photodune which are not part of the theme
http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi#item-description__external-scripts-and-resources-used
Best regards,
Josue
Hi AdDesign!
I’m sorry but you’re not using an Enfold theme.
Best regards,
Ismael
Hey!
I checked your website and it’s not happening on my end, have you tried from another computer?

Best regards,
Josue