Forum Replies Created
-
AuthorPosts
-
Hey jbc1407!
What do you mean by “sub-main” menu? You can change the main menu color using this on Quick CSS:
.header_color .main_menu ul:first-child > li > a { color: red; }Change the sub menu using this:
.header_color .sub_menu>ul>li>a { color: blue; }Regards,
IsmaelHey!
Please add this at the bottom of functions.php file:
add_action( 'init', 'avia_deactivate_permalink_rewrite', 10); function avia_deactivate_permalink_rewrite(){ remove_action( 'init', 'avia_wpml_register_post_type_permalink', 20); }Go to Settings > Permalinks and click the “Save” button to flush the permalinks. Do the flush a few times.
Cheers!
IsmaelHi yingfuli!
You can adjust the content div padding using this:
.content, .sidebar { padding-top: 10px; padding-bottom: 10px; }Regards,
IsmaelJanuary 2, 2014 at 3:04 am in reply to: Hide Archive for Category in Page Header — Child Theme Follow Up #204355Hey!
You can copy the whole avia_which_archive function on the child theme’s functions.php:
if(!function_exists('avia_which_archive')) { /** * checks which archive we are viewing and returns the archive string */ function avia_which_archive() { $output = ""; if ( is_category() ) { $output = __('Awesome for category:','avia_framework')." ".single_cat_title('',false); } elseif (is_day()) { $output = __('Archive for date:','avia_framework')." ".get_the_time( __('F jS, Y','avia_framework') ); } elseif (is_month()) { $output = __('Archive for month:','avia_framework')." ".get_the_time( __('F, Y','avia_framework') ); } elseif (is_year()) { $output = __('Archive for year:','avia_framework')." ".get_the_time( __('Y','avia_framework') ); } elseif (is_search()) { global $wp_query; if(!empty($wp_query->found_posts)) { if($wp_query->found_posts > 1) { $output = $wp_query->found_posts ." ". __('search results for:','avia_framework')." ".esc_attr( get_search_query() ); } else { $output = $wp_query->found_posts ." ". __('search result for:','avia_framework')." ".esc_attr( get_search_query() ); } } else { if(!empty($_GET['s'])) { $output = __('Search results for:','avia_framework')." ".esc_attr( get_search_query() ); } else { $output = __('To search the site please enter a valid term','avia_framework'); } } } elseif (is_author()) { $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author')); $output = __('Author Archive','avia_framework')." "; if(isset($curauth->nickname)) $output .= __('for:','avia_framework')." ".$curauth->nickname; } elseif (is_tag()) { $output = __('Tag Archive for:','avia_framework')." ".single_tag_title('',false); } elseif(is_tax()) { $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); $output = __('Archive for:','avia_framework')." ".$term->name; } else { $output = __('Archives','avia_framework')." "; } if (isset($_GET['paged']) && !empty($_GET['paged'])) { $output .= " (".__('Page','avia_framework')." ".$_GET['paged'].")"; } return $output; } }Best regards,
IsmaelHi!
You can use this to center align the gallery:
#top .fullsize .template-blog .post .entry-content-wrapper > * { margin-left: auto; margin-right: auto; max-width: 1100px; text-align: center; } .single .gallery { display: inline-block; }Regards,
IsmaelHi!
Do what Devin said or try to add this at the very bottom of custom.css or Quick CSS:
.main_menu { position: absolute; margin: 0; right: 0; bottom: 0; }Best regards,
IsmaelJanuary 2, 2014 at 2:48 am in reply to: Increase paragraph gapping but not effecting everything… #204347Hi jvines!
You can use this for the first link:
.entry-content p { padding: 1.0em 0; }If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 .entry-content p{ padding: 1.0em 0; }Regards,
IsmaelHey laurendevine!
As you can on the demo here: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/
The images use for the Fullscreen Slider is 1500x1500px in size.
Best regards,
IsmaelJanuary 1, 2014 at 6:01 am in reply to: Issue regarding quality of responsive images and more #204224January 1, 2014 at 5:52 am in reply to: Highlight current parent page navigation while on child page #204222Hey!
Please use this. Don’t forget to remove browser cache then reload the page a few times after.
.active-parent-item>a>.avia-menu-fx>.avia-arrow-wrap, .active-parent-item>a>.avia-menu-fx>.avia-arrow-wrap { display:block !important; opacity: 1; visibility: visible; }Regards,
IsmaelHey EvanMPW!
The Portfolio options is not available on Enfold Settings. You can create a specific portfolio page using the Portfolio Grid element on the Advance Layout Builder. I’m not sure why the portfolio slug revert back to default but try to update the theme via FTP in the future. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Best regards,
IsmaelHey!
Have you test it on a different browser and computer? I actually encountered this issue on Google Chrome Windows 8. Please try to download the theme again from your themeforest account then update it via FTP.
Cheers!
IsmaelHey jmalevic!
I’m not sure if this is possible. Please hire a freelance developer to modify the category widget for you. Can you please give us a link to the page with the category widgets?
Best regards,
IsmaelHey!
I accessed the website and the LayerSlider panel. It loads fine on my end. I used Chrome Windows 7. Please try to remove browser cache or test it on another browser:

Cheers!
IsmaelHi wallaroomedia!
Please don’t edit anything on the theme files. Go to Enfold > Footer > Copyright then place the [nolink] tag on the field.
Cheers!
IsmaelDecember 26, 2013 at 4:20 am in reply to: blank page for editing with Advanced Layout Editor #203606Hi!
Please check on Screen Options if the Avia Layout Builder is ticked. Disable all plugins then check it on another browser.
Regards,
IsmaelDecember 26, 2013 at 4:17 am in reply to: Comments don't show on pages but show on blog, i wan't them everywhere ! #203605Hey odeya!
This will only work if you’re not using the Advance Layout Builder for your pages. Edit page.php, find this code:
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar'; get_template_part( 'includes/loop', 'page' );Below, add this code:
//wordpress function that loads the comments template "comments.php" comments_template( '/includes/comments.php');Edit the page then make sure that the Allow Comments option under Discussions box is enabled.
Cheers!
IsmaelHi!
Please check on Screen Options if the Avia Layout Builder is ticked. Disable all plugins then test it on another browser.
Regards,
IsmaelHey!
Do you have any other plugins installed? Please post the login details here as a private reply. We would like to check it.
Best regards,
IsmaelHi!
As of now, you can only use the code above to change the order of the portfolio items. You can’t add the breadcrumbs using the Text Block element if that is what you mean.
Cheers!
IsmaelHey Seba1973!
What type of header do you have? Please check on Enfold > Header > Header Type. Inspect the menu using Google Chrome then look for the menu list id. Use it to color a specific menu item:
.header_color .main_menu ul:first-child > li#menu-item-755 > a { color: red; }Regards,
IsmaelHey Ben!
It is not showing on iPhone because it is positioned on the right edge of the slider. Edit the video layer then go to Attributes panel. Add a unique css selector id. Example “awesome-video”. Use this on your custom.css or Quick CSS to move the video element to the left.
@media only screen and (max-width: 767px) { #awesome-video { left: 150px; } }Cheers!
IsmaelHi!
The wp-config.php file should be located on the root folder of your WordPress installation, add the code there.
define(‘WP_MEMORY_LIMIT’, ’128M’);Regards,
IsmaelHey sparkeeey!
You can use this plugin to insert a full width background: http://wordpress.org/plugins/wp-backgrounds-lite/
Edit the page then look for Page Attribus > Template > select the “Blank page”. Insert a Color Section and put the content inside.
Regards,
IsmaelDecember 24, 2013 at 7:32 am in reply to: Love the Enfold theme and the LayerSllider – video play button difficult to see #203495Hey!
Edit config-layerslider > LayerSlider > skins > fullwidth > skin.png, adjust the size of the play button:

Adjust the width and height of the button using this on your Quick CSS:
.ls-fullwidth .ls-playvideo { width: 100px; height: 100px; margin-left: -25px; margin-top: -25px; }Best regards,
IsmaelHi!
You can change the order of the portfolio items using this on functions.php:
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);Refer to this link for more order parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Cheers!
IsmaelDecember 24, 2013 at 7:01 am in reply to: Menu Changes Custom Links into Columns…Need Help Stopping This #203484Hi discover_peppermint!
Please check if the top menu item has the “Use as mega menu” option ticked. Unchecked the mega menu option.
Regards,
IsmaelDecember 24, 2013 at 6:56 am in reply to: Love the Enfold theme and the LayerSllider – video play button difficult to see #203481Hi michaelhiga!
How did you add the video? Can you please give us a link to the page with the slider video?
Regards,
IsmaelDecember 24, 2013 at 6:53 am in reply to: Contact page settings missing address and Contact field #203479Hi barrowcreative!
Can you please give us a link to the Contact page? You can add multiple fields using the Contact Form element. You can also use these plugins: http://wordpress.org/plugins/contact-form-7/ or Gravity Forms
Cheers!
IsmaelHi kecster2!
If the plugin uses shortcode then you can add the shortcode on a Text Block element using the Advance Layout Builder. Make sure that you switch the Text Block element editor to Visual mode. We don’t usually support third party plugins. Please hire a freelance developer if you want it to be fully compatible with the theme.
Regards,
Ismael -
AuthorPosts

