Forum Replies Created

Viewing 30 posts - 58,171 through 58,200 (of 67,597 total)
  • Author
    Posts
  • in reply to: Avia Gallery editing? #279217

    Hey fortuneRice!

    Thank you for visiting the support forum!

    I’m sorry but you won’t be able to go back to the shortcode option panel again if you use the shortcode wand to insert the element. If I am not mistaken, you’re adding the gallery on a posts. Posts does not support the advance layout builder yet. You can add the feature for post s but we won’t provide any support for it. Edit wp-content > themes > enfold > config-templatebuilder > avia-template-builder > config > meta.php, find this code on line 5:

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    

    Replace it with:

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page', 'post'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    

    Regards,
    Ismael

    in reply to: Problem in tablet browser #279214

    Hi!

    Thank you for the info.

    Yes, we know about the header error but what about the parallax. Please use this to disable it for the stock browser.

    .html_header_top.html_header_sticky.html_bottom_nav_header.avia-android #main {
        padding-top: 0;
    }
    
    .html_header_top.html_header_sticky.avia-android #header {
        position: relative;
    }

    Cheers!
    Ismael

    in reply to: Logo and menu CENTER #279210

    Hey Jane!

    Thank you for visiting the support forum!

    What is the version of your Safari browser? Please post the actual link to the website here so that we can inspect it. Make sure that you’re running Enfold 2.8.1 with the latest version of WordPress.

    Best regards,
    Ismael

    in reply to: Icon List question #279209

    Hey jonahrbrown!

    Thank you for using the theme!

    Edit config-templatebuilder > avia-shortcodes > iconlist.php, find this code on line 118:

    "std" 	=> __("List Content goes here", 'avia_framework'),
    

    Replace it with:

    "std" 	=> __("", 'avia_framework'),
    

    Cheers!
    Ismael

    in reply to: How to make portfolio categories beautiful! #279207

    Hi afarahani!

    Thank you for the link.

    You can add something like this on Quick CSS or custom.css to increase the left and right padding between the sort items:

    #js_sort_items .text-sep {
    padding: 0 30px;
    }

    Best regards,
    Ismael

    in reply to: Change Page Title #279204

    Hi Sally!

    Thank you for visiting the support forum!

    Add something like this on functions.php to change the title of a certain page:

    add_filter('avf_title_args', 'avf_change_page_title', 10, 2);
    function avf_change_page_title($args,$id) {
    	if(is_page('About Us')) {
    		$args['title'] = 'Awesome Title';
    	} elseif (is_page('Products')) {
    		$args['title'] = 'Shop';
    	}
    	return $args;
    }

    The “About Us” page will have the “Awesome Title” as title and the “Products” page to “Shop”.

    Regards,
    Ismael

    Hey UncleGroOve!

    Thank you for using the theme!

    It’s not actually being overwritten by the theme’s stylesheets. I think the problem lies on the use of the selector. You need to use the theme’s proper css selector. If you want to target the h2 tags, the theme uses different selector to apply the color for it. Another set of selector to modify the text styling, size, variation etc.

    .alternate_color h2, .main_color h2 {
    color: red;
    }

    Use google inspect element or firebug to find the proper css selector.

    Cheers!
    Ismael

    in reply to: Using Own Buttons #279201

    Hi SMDNAS!

    Thank you for using the theme.

    Which form buttons are you trying to modify? If you can provide us with a screenshot or a link to the actual page, we’ll try to provide you with a solution. Also, please post the link to the button image.

    Cheers!
    Ismael

    in reply to: Background image in icon box #279200

    Hi SMDNAS!

    Thank you for visiting the support forum!

    Yes, that is possible but first you need to add the avia_template_builder_custom_css support. You’ll be able to add a unique selector for each Avia Elements. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit any avia elements like the iconbox element then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “iconbox-bg”.

    You can add something like this on your custom.css or Quick CSS:

    .iconbox.iconbox-bg .iconbox_content {
    background: red;
    }

    Refer to this link for more info: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    in reply to: Menu Button with an icon #279198

    Hi geanguru!

    Thank you for using the theme.

    You can add something like this on functions.php:

    add_filter( 'wp_nav_menu_items', 'avf_add_login_item', 10, 2 );
    function avf_add_login_item ( $items, $args ) {
    	$loginout = wp_loginout('', false);
        if ($args->theme_location == 'avia') {
    		$items .= "<li class='login_link $sub2'>".$loginout."</li>";
    	 }
         return $items;
    }

    Use the .login_link css selector to modify the look of the loginout menu item.

    Regards,
    Ismael

    in reply to: Enfold not responsive #278813

    Hi Raffaella!

    Thank you for visiting the support forum!

    The mobile menu is showing fine when we checked the website. If you don’t mind, please post a screenshot of the issue on your end? We would like to see it.

    Regards,
    Ismael

    Hey garyguthrie!

    Thank you for the link.

    Please edit search.php, remove everything then replace it with this code: http://pastebin.com/4AvLCw1Q

    Add this on Quick CSS or custom.css:

    .search main.content.template-search.twelve.units {
    border-right: none;
    }

    Cheers!
    Ismael

    in reply to: Posts go to grey page #278807

    Hi!

    Thank you for using the theme.

    Do you mind if we take a look at the actual posts where this is happening? Make sure that you’re using the latest version of the theme.

    Best regards,
    Ismael

    in reply to: Disable flag images in enfold header #278805

    Hey glozemedia!

    Thank you for visiting the support forum!

    You can add this on functions.php if you want to remove the default theme flags and append the language switcher on the footer right after the widget columns:

    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
            add_action('avia_after_footer_columns', 'avia_wpml_language_switch', 10);
    }

    Best regards,
    Ismael

    in reply to: 404 errors on mailto links #278804

    Hey markmclaren74!

    Thank you for the link.

    I think you’re adding it wrong.

    <a href=“mailto: (Email address hidden if logged out) ”>
    

    Replace it with:

    mailto: (Email address hidden if logged out) 
    

    Cheers!
    Ismael

    in reply to: Pages #278803

    Hey!

    Thank you for using the theme.

    Glad it is working now. Mind sharing what you did in order to fix it? Go to the Pages panel then click the Trash. Empty it. After that, go to the Settings > Permalink panel then flush the permalink by clicking the “Save” button once.

    Cheers!
    Ismael

    in reply to: Problem in tablet browser #278801

    Hey!

    Thank you for the update

    Do you mind providing a short clip for the parallax error like you did on the header issue? Maybe, we can get a workaround once we see the actual issue.

    Best regards,
    Ismael

    in reply to: Correlated products #278800

    Hey!

    Thank you for using the theme.

    You should be able to select the linked products on the Up-Sells section. Edit the product then look for the Linked Products panel. Add the products that you want to show on “You may also like” section.

    Best regards,
    Ismael

    Hi Itai!

    Thank you for visiting the support forum.

    Set the caption position to center framed then add this on Quick CSS or custom.css:

    div.caption_fullwidth.caption_center.caption_center_framed.caption_framed {
    top: -30%;
    }

    Adjust the top position.

    Cheers!
    Ismael

    in reply to: Logo – modify size #278796

    Hey JulieDesigns2!

    Thank you for using the theme.

    Upload the logo image then insert the full size. Go to Enfold > Header Layout > Header layout panel. Choose custom px value on the Header Size option. Adjust the height to 312px to accommodate the full size of the logo.

    Best regards,
    Ismael

    in reply to: Promo Box in IE 8 #278794

    Hi mgould!

    Thank you for the link.

    Please add this on Quick CSS or custom.css:

    .avia-msie-8 div.avia-promocontent a img, .avia-msie div.avia-promocontent a img {
    max-height: 155px;
    }

    Regards,
    Ismael

    in reply to: Trying to Style the Menu (Again) #278792

    Hi!

    Thank you for the info.

    The menu is still full width but there are borders. You can remove the borders with this:

    .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li:first-child a {
    border: none;
    }
    
    .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li a {
    border: none;
    }

    Regards,
    Ismael

    in reply to: Changing size of main menu font #278790

    Hi clientflo!

    Thank you for visiting the support forum!

    Please go to Enfold > Advanced Styling then edit the Main Menu Links element.

    Regards,
    Ismael

    in reply to: Social media icons modify #278789

    Hi kimchan2!

    Thank you for using the theme.

    Edit Quick CSS or custom.css then add this code:

    #top #wrap_all .av-social-link-rss:hover	   	 a{color:#fff; background-color:#ffa133; }
    #top #wrap_all .av-social-link-facebook:hover  a{color:#fff; background-color:#37589b; }
    #top #wrap_all .av-social-link-twitter:hover   a{color:#fff; background-color:#46d4fe; }
    #top #wrap_all .av-social-link-mail:hover      a{color:#fff; background-color:#9fae37; }
    #top #wrap_all .av-social-link-dribbble:hover  a{color:#fff; background-color:#e44885; }
    #top #wrap_all .av-social-link-linkedin:hover  a{color:#fff; background-color:#419cca; }
    #top #wrap_all .av-social-link-search:hover    a{color:#fff; background-color:#222222; }
    #top #wrap_all .av-social-link-gplus:hover     a{color:#fff; background-color:#de5a49; }
    #top #wrap_all .av-social-link-behance:hover   a{color:#fff; background-color:#008cfa; }
    #top #wrap_all .av-social-link-flickr:hover    a{color:#fff; background-color:#ff0086; }
    #top #wrap_all .av-social-link-forrst:hover    a{color:#fff; background-color:#234317; }
    #top #wrap_all .av-social-link-myspace:hover   a{color:#fff; background-color:#000000; }
    #top #wrap_all .av-social-link-tumblr:hover    a{color:#fff; background-color:#345574; }
    #top #wrap_all .av-social-link-vimeo:hover     a{color:#fff; background-color:#31baff; }
    #top #wrap_all .av-social-link-youtube:hover   a{color:#fff; background-color:#a72b1d; }
    #top #wrap_all .av-social-link-pinterest:hover a{color:#fff; background-color:#cb2027; }
    #top #wrap_all .av-social-link-skype:hover 	   a{color:#fff; background-color:#12a5f4; }
    #top #wrap_all .av-social-link-instagram:hover a{color:#fff; background-color:#a67658; }
    #top #wrap_all .av-social-link-five_100_px:hover a{color:#fff; background-color:#222222; }
    #top #wrap_all .av-social-link-soundcloud:hover  a{color:#fff; background-color:#F76700; }
    #top #wrap_all .av-social-link-xing:hover 	     a{color:#fff; background-color:#006567; }
    #top #wrap_all .av-social-link-vk:hover 	   	 a{color:#fff; background-color:#597BA5; }
    #top #wrap_all .av-social-link-reddit:hover 	 a{color:#fff; background-color:#FF4500; }

    Change the background-color. Add this on Quick CSS or custom.css to increase the radius of the social icons:

    #top .social_bookmarks {
    height: 40px;
    }
    
    #top .social_bookmarks li {
    width: 40px;
    }
    
    #top .social_bookmarks li a {
    width: 40px;
    line-height: 40px;
    min-height: 40px;
    }

    Regards,
    Ismael

    in reply to: Multiple Issues #278788

    Hi sparkeeey!

    Thank you for using the theme.

    There are script errors on the shortcodes.js file when we checked the website. Please deactivate all plugins then test the pages again. If possible, please remove then insert the google map again.

    Best regards,
    Ismael

    in reply to: Text Block Content Missing #278785

    Hi MadrimNero!

    Thank you for the info.

    Please download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Also, please switch your advance layout builder to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You’lll be able to see the actual shortcode below the builder.

    Regards,
    Ismael

    in reply to: Background per page #278783

    Hi guiversiani!

    Thank you for using the theme.

    You can manually add the background or you can use this plugin: https://wordpress.org/plugins/wp-backgrounds-lite/

    Best regards,
    Ismael

    in reply to: Customizing the Enfold Archive Sidebar #278488

    Hey!

    Glad it worked. If you have any questions, let us know. :)

    Regards,
    Ismael

    in reply to: Font style unchangeable #278487

    Hi!

    Thank you for the info.

    No, the css modifications have nothing to do with it. Are you testing this on Windows machine? Note that the full Helvetica font family is not available on Windows unless you purchase it. What happens is, the font falls back to Arial.

    Cheers!
    Ismael

    in reply to: Font color for main menu links #278486

    Hey!

    Alright. Thank you for the info. I made the necessary changes on Quick CSS. Please check it on another browser or computer. Regarding the contact form format, use this on functions.php:

    add_filter('avf_datepicker_dateformat', 'avf_change_datepicker_format');
    
    function avf_change_datepicker_format($date_format) {
    	$date_format = 'mm / dd / yy';
    	return $date_format;
    }
    
    add_filter('avf_datepicker_date_placeholder', 'avf_change_datepicker_date_placeholder');
    
    function avf_change_datepicker_date_placeholder($placeholder) {
    	$placeholder = 'MM / DD / YY';
    	return $placeholder;
    }

    Cheers!
    Ismael

Viewing 30 posts - 58,171 through 58,200 (of 67,597 total)