Forum Replies Created

Viewing 30 posts - 60,661 through 60,690 (of 67,155 total)
  • Author
    Posts
  • in reply to: Issues (again) with the logo size #224803

    Hi pako69!

    On what browser and OS are you testing this? The logo looks fine on Chrome Windows 7.

    Cheers!
    Ismael

    in reply to: WooCommerce / Enfold Update Issue #224802

    Hi Mark!

    Can you please give us a link to the website? I think it is the woocommerce update because I used the an older version of the plugin and it works. Please try to ask the woocommerce support team.

    Cheers!
    Ismael

    in reply to: Change the color and size of the search icon #224799

    Hey AdDesign!

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

    #top .menu-item-search-dropdown > a, #searchform #searchsubmit, .ajax_search_image, .iconfont {
    font-size: 25px;
    }

    Change the color using this:

    .header_color .main_menu ul:first-child > #menu-item-search > a {
    color: red;
    }

    Best regards,
    Ismael

    in reply to: Issue with Variable Box size of Testimonial #224798

    Hey gentlemansgazette!

    That is how it’s supposed to work. You can set a minimum height for the testimonial content but I don’t think it will look good. Add this on Quick CSS:

    @media only screen and (max-width: 767px) {
    .main_color .avia-slider-testimonials .avia-testimonial-content {
    min-height: 200px;
    }
    }

    You can adjust the min-height value to decrease the bump somehow.

    Cheers!
    Ismael

    in reply to: Icon fade-In animation in google chrome #224797

    Hey Michael!

    It is not happening on our end. Can you please post a screenr or something so that we can see it? Did you activate any plugins prior to the issue?

    Regards,
    Ismael

    in reply to: Contact Form #224796

    Hi!

    You can use the Contact Form 7 plugin for that. Download it on this link. For each field you can enable the “Use this text as watermark?” option.

    Best regards,
    Ismael

    in reply to: order in search results #224792

    Hi toddgeist!

    You can use this plugin to maximize the search power of your website: SearchWP

    Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/

    Best regards,
    Ismael

    in reply to: Avia builder shortcode view in default editor #224791

    Hi Chenan!

    You can’t switch between the Default and the Advance Layout Builder. You need to decide which one you want to use for the page. Please switch your theme to debug mode if you want to see the actual shortcode below the Avia Builder. 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";
    }

    Best regards,
    Ismael

    in reply to: Slides gone after last enfold update #224790

    Hi andreano!

    You have a lot of plugins installed, please try deactivate them one at a time. Try to recreate the slider from scratch, you may need to update the links as mentioned on the theme changelogs. Please deactivate the cache plugin.

    Cheers!
    Ismael

    in reply to: Woocommerce – Anzeige Warenkorb in Sidebar #224788

    Hi themereinhard!

    I think the website is on maintenance mode. We need to inspect the sidebar. Please wait for Dude to respond.

    Regards,
    Ismael

    in reply to: Language Switcher im Header / Menü #224787

    Hey Martin!

    Can you please give us a link to the website? A screenshot of where you want the language switcher to be will help. :)

    Best regards,
    Ismael

    Hi!

    Really glad you figured out. :)

    Cheers!
    Ismael

    in reply to: Removing margin from second column #224782

    Hi!

    Please give us a link to the actual page. We don’t have any idea how you created the layout so we need to inspect the actual page.

    Cheers!
    Ismael

    in reply to: Issues with blog #224781

    Hi!

    I updated Dude’s code above. Please use it instead.

    Cheers!
    Ismael

    in reply to: Header background the same across the header #224780

    Hey ullastret!

    Please add this on Quick CSS or custom.css to remove the background of the following area:

    .header_color .container_wrap_meta, .header_color .main_menu ul {
    background: transparent;
    }

    Cheers!
    Ismael

    in reply to: Dutch translation #224778

    Hey cbeneden!

    Install the Codestyling Localization plugin. Go to Tools > Localization then scroll below and find Enfold. Look for the Deutsch translation then click “Edit”. Search for “You are here” then click edit and save. :)

    Best regards,
    Ismael

    in reply to: How to add new post format ? #224776

    Hi flinkfoxxx!

    You can edit functions.php, find this code on line 443:

    add_theme_support( 'post-formats', array('link', 'quote', 'gallery','video','image','audio' ) );
    

    Replace it with:

    add_theme_support( 'post-formats', array('link', 'quote', 'gallery','video','image','audio','status' ) );
    

    We used the status post format. You can refer to this link: http://codex.wordpress.org/Post_Formats#Supported_Formats

    You can edit the status format using this on functions.php:

    add_filter( 'post-format-status', 'avia_status_content_filter', 10, 1 );
    
    if(!function_exists('avia_status_content_filter'))
    {
    	function avia_status_content_filter($current_post)
    	{
    		/* FUNCTION HERE */
    	}
    }

    Best regards,
    Ismael

    in reply to: Entypo icons in "small info text" not showing #224774

    Hey!

    Generate the icon using the insert shortcode wand. You can find it under Content Elements panel then get the actual html using google chrome’s inspect element. Place the generated html code on the small info text field. It should look like this:

    <span class="av_font_icon avia_animate_when_visible av-icon-style-  av-no-color avia-icon-pos-left  avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:15px;line-height:15px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span>
    

    Cheers!
    Ismael

    in reply to: post revisions #224773

    Hey!

    Please give us a link to the website. Increase the wordpress php memory limit. Set it to at least 128M. Refer to this link.

    Regards,
    Ismael

    in reply to: Add icon to page main title #224772

    Hi dick1980!

    Add this on Quick CSS or custom.css:

    .title_container .main-title:before {
    	content: '\e86d';
    	font-family: 'entypo-fontello';
    	padding-right: 10px;
    }

    Best regards,
    Ismael

    in reply to: bad function in IE8 and Android Devices #224771

    Hi!

    Please add this plugin, see if it helps with IE8 rendering: http://wordpress.org/plugins/html5shiv/

    What is the model of your android device? Maybe a device extension or plugin is causing the issue.

    Regards,
    Ismael

    in reply to: Enfold Showcase #224770

    Hi!


    @costin
    : He added it on a div then set it to fix:

    .main_color {
    background: #ffffff url(https://www.heart-working.de/wp-content/uploads/2013/04/bg3.png) top center no-repeat fixed;
    }

    Cheers!
    Ismael

    in reply to: Replace Icon from Icon List with Image #224769

    Hey!

    Change the color of the menu using this:

    .header_color .main_menu ul:first-child > li > a {
    color: red;
    }

    This is for the active menu:

    .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a {
    color: blue;
    }

    Cheers!
    Ismael

    in reply to: Replace Icon from Icon List with Image #224768

    Hi!

    Can you please post a screenshot of what your trying to do? Do you want to change the grey background of the iconlist? You can set the image as background. Use this on Quick CSS:

    .alternate_color .avia-icon-list .iconlist_icon {
    background-color: #d0d0d0;
    background: #d0d0d0 url('IMAGE URL HERE') no-repeat;
    }

    Best regards,
    Ismael

    in reply to: Custom (Totally Custom!) Menus #224766

    Hi!

    You can add this on Quick CSS or custom.css to fix the logo:

    .logo, .logo img {
    max-width: 236px !important;
    width: 236px !important;
    height: 99px;
    }

    Regards,
    Ismael

    in reply to: Advanced layout editor not present in product page #224765

    Hey hanlinsg!

    Unfortunately, the product post type does not support the Advance Layout Editor. :/

    However, you can still insert shortcodes using the shortcode wand. :)

    Best regards,
    Ismael

    in reply to: Header overlaps Content (z-Index) #224761

    Hey!

    Can you please give us a link to the website? A screenshot of the issue will help.

    Best regards,
    Ismael

    in reply to: WOO COMMERCE DEACTIVATES EASYSLIDER AND IMAGES #224760

    Hey!

    I don’t see any issue on the page. The easy sliders are working properly. Please remove browser cache then reload the page a few times. Test it on another browser. Please post a screenshot of the issue if there is still any.

    Cheers!
    Ismael

    in reply to: Submenu spacing depth / padding #224759

    Hi donniemaclean!

    You should remove this line of code on Quick CSS:

    .main_menu ul:first-child > li a {
    height: 75px !important;
    line-height: 75px !important;
    }

    Regards,
    Ismael

    in reply to: remove field from below comments on blog #224758

    Hi tonyiatridis!

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

    .form-allowed-tags {
    display: none;
    }

    Regards,
    Ismael

Viewing 30 posts - 60,661 through 60,690 (of 67,155 total)