Hi Ismael
Thanks for your reply.
Was just writing this morning, to say i’d ditched that idea. (Over complicated) So don’t worry, but appreciate support.
My only question is now, can i get the logo to resize to a set size on an Ipad.
Heres the code you kindly helped me with on a desktop.
If i manage to work out, i’ll update this post.
.header-scrolled div .logo img {
height: 70px;
margin-left: -5px;
}
Rich
Hi Ismael,
Have Kriesi found the problem with the easy slider (he wrote about it here https://kriesi.at/support/topic/wordpress-36-update-wait-for-theme-updates/page/2)? Cause in Chrome, the Easy slider still freezes after the first switch after upgrading to 1.9.
Fantastic. Worked a treat. Thanks very much for your help and very quick response. Very much appreciated.
Cheers
Jase
You can use the menu builder (Appearance > Menus) to create your custom menus. Add a new menu, select the pages/categories, etc. on the left side and add them as menu items to the menu. You can also rename the menu items or add custom links to your menu. Then save the menu and assign it to the right theme location (i.e. to “Enfold Main Menu”).
Hi,
Use the 1/5 element then add this code on your custom.css or Quick CSS
.flex_column.av_one_fifth.first.avia-builder-el-first {
margin-left: 0 !important;
}
.flex_column.av_one_fifth.first.avia-builder-el-last {
margin-left: 6%;
float: left;
clear: none;
margin-top: 0;
}
div .av_one_fifth {
margin-left: 6%;
width: 10%;
}
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
height: 116px !important;
line-height: 116px !important;
}
Adjust the height and line-height according to the height of your logo. Don’t remove the !important.
Regards,
Ismael
Hi,
Place a horizontal rule element shortcode, select Whitespace then height to 1px.
[av_textblock custom_class='']
[av_hr class='invisible' height='1' shadow='no-shadow' position='center' custom_class='']
[/av_textblock]
Regards,
Ismael
Hi,
Please use this on your custom.css or Quick CSS to change the background color of the search field.
#s {
background: white !important;
}
And this for the input color.
#top .header_color input[type='text'], #top .header_color input[type='input'] {
color: red !important;
}
Change the color value.
Regards,
Ismael
Hi There
Firstly. A brilliant theme. The best I have worked with to-date. Well done!
I want to fix the top logo panel so it doesn’t scale when I scroll down. Could you please point me in the right direction to fix this panel to a fixed height at all times.
Thanks in advance.
Cheers
Jase
Hi,
Please remove the code then replace it with this:
.tabcontainer div {
margin-top: 0;
}
On the first and first image, you have a span hr inner. Please remove that to align the images properly.
Regards,
Ismael
Hi,
@BizBuzzMedia:
Edit 404.php, find this code:
//get the sidebar
$avia_config['currently_viewing'] = 'page';
get_sidebar();
Replace it with:
//get the sidebar
$avia_config['currently_viewing'] = 'page';
echo '<div class="sidebar sidebar_right three alpha units"><div class="inner_sidebar extralight-border">';
dynamic_sidebar( '404' );
echo '</div></div>';
Go to Appearance > Widgets, create a custom widget and name it “404”. Supply it with widgets.
Next time, please create a new topic for your inquiry.
Thanks,
Ismael
Hi,
You can insert a horizontal rule shortcode below the content, set it to Whitespace.
[av_icon_box icon='1' position='left' title='IconBox Title' link='' linktarget='no' custom_class='']
Click here to add your own text
[av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_class='']
Wah
[/av_icon_box]
Regards,
Ismael
Hi,
Please add this on your functions.php, below line 3:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Allura'] = 'Allura';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Allura'] = 'Allura';
return $fonts;
}
Edit header.php, then place this code on top of </head> tag.
<link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>
You can now assign the Allura font using custom.css or Quick CSS. For example, we’ll change the iconbox title:
h3.iconbox_content_title {
font-family: 'Allura' !important;
}
This is the screenshot:

Regards,
Ismael
Hi,
Please add this on your functions.php, below line 3:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Allura'] = 'Allura';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Allura'] = 'Allura';
return $fonts;
}
Edit header.php, then place this code on top of </head> tag.
<link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>
You can now assign the Allura font using custom.css or Quick CSS. For example, we’ll change the iconbox title:
h3.iconbox_content_title {
font-family: 'Allura' !important;
}
This is the screenshot:

Regards,
Ismael
Hi,
1.) The social icons use the entypo fontello font. Right now, there is no easy way of adding a social button. Please refer to this link and follow Nick’s or my instruction: https://kriesi.at/support/topic/youtube-icon
2.) You can change the arrow on css > base.css, find this code:
.image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}
Change the content property with another icon from entypo fontello. Refer to link for the entypo character maps: http://www.entypo.com/characters/
Example, we’ll use the phone icon(U+1F4DE):
.image-overlay .image-overlay-inside::before{content:"1F4DE"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"1F4DE";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"1F4DE";}
You can combine different icons.
Regards,
Ismael
Hi – How can I prevent the placeholder text from showing in empty text blocks? For example see http://thebailorgroup.com/wp-content/uploads/2013/08/textIssue8.5.13.png and the colored section on the live page: http://thebailorgroup.com/coming-soon/
Thank you for letting me know so I can stop looking for a solution that doesn’t exist.
:)
Hello,
Is there any way to get the theme to stop removing line breaks </br>. I have tried adding breaks. It looks fine in the avia builder but as soon as I hit save the breaks are removed and it diverts back to the builder without the breaks. I have 3 icon boxes and the middle one has less text so to line them up at the bottom I am trying to add line breaks but they keep getting removed.
I have also tried tunymce advanced with the option ‘stop removing p tags and line breaks’ selected.
Thanks
Andrew
Hi,
The spacing between widgets on the frontage I would like to reduce.
I have used the below quick css as found in other threads which is changed spacing on other pages but not the home page.
.sidebar .widget {
margin-bottom: -30px;
}
.sidebar .widget {
margin-top: -30px;
Thanks
I am having the same issue. FullWidthLayerSlider doesn’t work so I tried to use the LayerSlider WP and my background images for the color sections stop working. They load initially with the page, but once the slider starts to cycle they disappear and go blank.
I just wondered the same. Searched this forum and found the answer.
https://kriesi.at/support/topic/how-to-remove-theme-credit-to-kriesi-at-bottom-of-footer
I only used the [no link] at the end of my footer text and it did the job.
Hi,
I’m having the same issue I’ve just upgraded to v1.9 and the easy-slider is not changing at first image, also the post slider moves on once then stops.
I have read this notice on ThemeForest:
with Enfold we went a step further and now allow you to display conditional menu items (based on user status like logged in or logged out, based on the page you are currently viewing etc)
This feature can be activated by adding the add_theme_support(‘avia_conditionals_for_mega_menu’); flag to the top of your functions.php file
This interests me very much!
But there are no explanations in documentation.
I put in my functions.php file the following code: add_theme_support(‘avia_conditionals_for_mega_menu’);
Please explain to me how you use this feature?
Many thanks
Hi Peter, I opened a thread in the support forum WPML. I leave the link below.
http://wpml.org/es/forums/topic/no-puedo-visionar-la-galeria-de-imagenes-desde-post-yo-paginas/
With service response WPML support … talk again
Thanks for your help
Hi there,
maybe i am doing something wrong…
just uploaded the 1.9 version, but the easy-slider still doesn´t work like it should.
Displaying portfolio items it only displays the first image, then stops.
Any suggestions?
Thanks
Hi,
You can go to Appearance > Menu and remove the Home from the menu.
Thanks,
Nick
Hi Peter,
You can just remove the pseudo class :hover from the above and change the css class names to this format:
#top #header .social_bookmarks_skype a {
background-color: #37589B;
}
2) The icon boxes right now aren’t customizable except with direct css or site wide css. So you could do:
#top .avia-icon-list .iconlist_icon {
background-color: red; /*background*/
}
#top .avia-icon-list .iconlist_icon {
border-color: blue; /*border*/
}
3) I think this is answered with the first bit of css above.
5) That link shows as a 404 error but if you make a new topic just for that with an example in the topic we’ll be able to fix it directly.
Regards,
Devin