Forum Replies Created

Viewing 30 posts - 49,351 through 49,380 (of 66,150 total)
  • Author
    Posts
  • Hi!

    Yes, you need to edit each product. Select the name of the product template and change the content of the elements manually. A small price to pay for a custom product layout. Unfortunately, there’s no way to apply the template to all product items automatically.

    Cheers!
    Ismael

    in reply to: Main Menu vs. Mobile Menu on resize #415907

    Hey!

    You can adjust the Header Mobile Menu activation settings on Enfold > Header > Mobile Menu panel to show the mobile advance menu earlier. Select the second option.

    Best regards,
    Ismael

    in reply to: Icon double click on mobile #415906

    Hey!

    Try to add this to the functions.php:

    add_action('wp_footer', 'ava_option_style');
    function ava_option_style(){
    ?>
    <script>
    (function($){	
    	$('#top .av_font_icon a').each( function(){
    		var iconlink = $(this).attr('href');
    		$(this).removeAttr('href');
    		$(this).css('cursor', 'pointer');
    		$(this).click(function() {
    			window.location = iconlink;
    		});
    	});
    })(jQuery);
    </script>
    <?php
    }

    Cheers!
    Ismael

    in reply to: Easy Slider Problem after Update #415900

    Hi SJS!

    Thank you for using Enfold.

    I can’t reproduce the issue. The slider displays fine on load. Try to check to it on another browser. Install cache and minify plugins to speed up page load.

    Regards,
    Ismael

    in reply to: Contact menu drop down list styling #415898

    Hey!

    Browsers handle the select and option elements differently so you cannot change the style of that element, not the height, padding and margins at least. Change the background and text color with this:

    #top select option {
      background: black;
      color: white;
    }

    Cheers!
    Ismael

    in reply to: Buttons anstatt Links zur Portfolio-Sortierung #415897

    Hi!

    Add the margin property:

    .sort_by_cat .inner_sort_button {
        background: none repeat scroll 0 0 black;
        border-radius: 2px;
        color: white;
        display: block;
        padding: 5px 15px !important;
    margin: 0 15px;
    }

    This is for the active state:

    .active_sort .inner_sort_button {
      background: red;
    }

    Regards,
    Ismael

    in reply to: "Go to the top" button transition for other links #415895

    Hey therqworld!

    Thank you for using Enfold.

    Did you use anchor links?

    <a href="#section">Click</a>
    

    It will have smooth scrolling enabled by default.

    Regards,
    Ismael

    in reply to: Display full portfolio content on a page? #415894

    Hey albiedo!

    Thank you for using Enfold.

    You can’t show all content of a portfolio item in the portfolio overview page because of the way the portfolio grid is laid out. The content will break the layout of the overview page.

    Cheers!
    Ismael

    in reply to: Revolution Slider Element Inside Layout Element? #415890

    Hi!

    Great. Let us know if you encounter any issue. :)

    Best regards,
    Ismael

    in reply to: Importing demo #415887

    Hey gearouthere!

    Thank you for using Enfold.

    Importing the new demo will override all modifications you have added to the theme so it’s not advisable. You can switch the builder to debug mode: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    This is the actual shortcode of the frontpage of Enfold Shop Page demo: http://pastebin.com/n0McJaAr

    Regards,
    Ismael

    in reply to: Arabic translation of Enfold is not active #415886

    Hi!

    The language files exists but they are not fully translated yet. I’m afraid you have to translate them yourself because we only rely on other users to translate the theme for obvious reasons. Use the Codestyling Localization or POEdit software to translate the theme options.

    Cheers!
    Ismael

    in reply to: Mobile logo is showing up wrong #415885

    Hey veritywebsolutions!

    Thank you for using Enfold.

    The logo displays fine on mobile when I checked it. Please use chrome or firefox instead of stock browsers. Note that the site is not fully compatible with Android’s stock browsers.

    Cheers!
    Ismael

    in reply to: Additional in Hotspot text when using Image with Hotspot #415884

    Hey!

    Replacing avia_apply_autop with avia_remove_autop will remove the paragraph tag but you won’t be able to use shortcodes inside the tooltip.

    Best regards,
    Ismael

    Hi!

    Thank you for using Enfold.


    @marcsalvans
    : There are lots of plugins installed and maybe one of theme is causing the error. Please deactivate them.


    @jejito
    : What do you mean by it can’t be copied? Are you trying to add it inside a child theme? Please avoid modifications of core theme files, specially the framework files.

    Cheers!
    Ismael

    in reply to: Demo content error #415879

    Hey!

    Try to import the xml files manually. You can find the demo files on enfold\includes\admin\demo_files folder.

    Cheers!
    Ismael

    in reply to: Product and Post Slider Not Displaying on Mobile #415869

    Hey!

    The site is not using the latest version of the theme, 3.1. There are lots of missing options and codes in some of the theme files are different. Please update the theme to version 3.1.1.

    Best regards,
    Ismael

    in reply to: Stretched – Boxed layout #415865

    Hi!

    Add this:

    div#header_meta, div#header_main {
      width: 90%;
      margin: 0 auto;
    }

    Best regards,
    Ismael

    in reply to: line-height in menu items #415864

    Hi!

    Remove this code:

    #header_main .container, .main_menu ul:first-child > li a {
      line-height: 136px!important;
    }

    Replace it with:

    
    #header_main .container, .main_menu ul#avia-menu > li a {
      line-height: 136px!important;
    }
    
    ul#avia-menu .sub-menu li a {
      line-height: 30px!important;
    }

    Regards,
    Ismael

    Hi!

    Please use the css code above to remove the sidebar. I can see the “Add to basket” button inside the product page. Is that what you’re referring to?

    Regards,
    Ismael

    in reply to: Cant edit the WooCommerce Tab Manager #415861

    Hi xianeK!

    Thank you for using Enfold.

    I cannot see any tabs in the page. Where is the actual product page? Note that you can use the advance layout builder for products. Add the tab element.

    Cheers!
    Ismael

    in reply to: Accordion Slider Caption/Excerpt Position??? #415859

    Hi!

    It is already set to black background. Did you figure it out? You can use RGBA color:

    #top .aviaccordion-excerpt {
      background-color: rgba(0,0,0,1);
    }

    Best regards,
    Ismael

    in reply to: How to have a table without grey background? #415858

    Hi peiiep!

    Thank you for using Enfold.

    Add this to the Quick CSS field to remove the alternate row color:

    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
      background: #ffffff;
    }

    Best regards,
    Ismael

    in reply to: Help changing sidebar Widget title colour #415856

    Hey!

    Adjust the capitalization of the heading with this:

    h1,h2,h3,h4,h5,h6 { text-transform: capitalize !important; }
    

    It’s possible to activate the breadcrumb when glassy header is enabled but it will break the layout of the site. Edit functions-enfold.php, look for this code on line 704:

    //deactivate title bar if header is transparent
    		if(empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
    

    Replace it with:

    //deactivate title bar if header is transparent
    		if(!empty($transparency)) $header['header_title_bar'] = '';
    

    Best regards,
    Ismael

    in reply to: Footer Column Widths #415855

    Hey tocal!

    Thank you for using Enfold.

    Use css child selectors. Refer to this link for more info: http://www.w3schools.com/cssref/sel_nth-child.asp

    #footer .flex_column:nth-child(0) {
     /* FIRST COLUMN */
    }
    
    #footer .flex_column:nth-child(1) {
     /* SECOND COLUMN */
    }
    
    #footer .flex_column:nth-child(2) {
     /* THIRD COLUMN */
    }
    

    Cheers!
    Ismael

    in reply to: How to delete 'all' in sortable masonry portfolio #415853

    Hi!

    You can add this to the Quick CSS field:

    a.all_sort_button.active_sort, a.all_sort_button.active_sort + span {
      display: none;
    }

    Add this to the functions.php to activate the first category:

    add_action('wp_footer', 'ava_auto_click');
    function ava_auto_click(){
    ?>
    <script>
    (function($){	
    	$(window).load(function() {
    		$('.categoryname_sort_button').trigger('click');
    	});	
    })(jQuery);
    </script>
    <?php
    }

    Change the “categoryname” to the name of the first category on your installation.

    Best regards,
    Ismael

    in reply to: Changing Menu style #415706

    Hey!

    Thank you for using Enfold.

    Set the menu item style to “Button Style” then add this to the Quick CSS field to change the button color:

    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
      background: orange;
      border-color: black;
    }

    Best regards,
    Ismael

    in reply to: Sidebar menu formatting broken with update #415702

    Hi mikegrace78!

    Thank you for using Enfold.

    That is the default style of child menu items. You can change it with this:

    .main_color .widget_nav_menu ul:first-child>.current-menu-ancestor,  .sidebar .widget_nav_menu ul:first-child>.current-menu-ancestor {
      background: transparent;
      box-shadow: none;
    }
    
    #top .widget_nav_menu ul ul li.current-menu-item a {
      width: 100%;
      border-top: 1px solid rgba(0, 0, 0, 0.2);
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      background: #fcfcfc;
      position: relative;
      left: -65px;
      padding-left: 80px;
      width: 100%;
    }

    Cheers!
    Ismael

    in reply to: Little Responsive problems #415701

    Hi!

    The hover state isn’t going to work on mobile view that’s why they are displayed by default. Add this to the Quick CSS field to hide it permanently on mobile:

    @media only screen and (max-width: 767px) {
    .av-fixed-size .av-masonry-entry .av-inner-masonry-content, .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry .av-inner-masonry-content {
     display: none !important;
    }}

    Cheers!
    Ismael

    in reply to: Images in textbox do not show, until the user scrolls #415686

    Hey!

    I checked the page but it’s set to the default theme. Activate the Enfold theme then we’ll check it. I tried to login but the login credentials above are not working. Please check.

    Best regards,
    Ismael

Viewing 30 posts - 49,351 through 49,380 (of 66,150 total)