Forum Replies Created

Viewing 30 posts - 54,061 through 54,090 (of 67,491 total)
  • Author
    Posts
  • in reply to: Greyscale Overlay for Portfolio #349294

    Hey Veronica!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    .isotope_activated .isotope-item img {
    display: block;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray;
    -webkit-transition: all .6s ease;
    }
    
    .isotope_activated .isotope-item:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: none; 
    }

    Cheers!
    Ismael

    in reply to: Events Category Color not showing #349293

    Hey!

    Please try to use this:

    .fc-event-inner {
    width: 142px !important;
    }

    Use css media queries to adjust the width of different screen sizes.

    Best regards,
    Ismael

    in reply to: Installed bbpress but can't see forums in the dashboard #349291

    Hey!

    The forum page looks fine when I checked it. Please try to remove browser cache then check it again.

    Regards,
    Ismael

    Hey!

    Thank you for the info.

    I’m sorry but the code should look like that by default. All sections, grids are located properly located inside the #main container. It will also work that way if you add a Color Section. Are you having layout issues? From what I can see, the page looks fine.

    Cheers!
    Ismael

    Hey!

    I’m sorry that you’re having this issue but I created this test page without any hassle. As you can see, there are tons of elements on the page and I created it on less than 10 seconds: http://healthybliss.net/test-page/

    Have you tried a different browser? Forgive me for asking, maybe you have a slow internet connection?

    Regards,
    Ismael

    in reply to: Sidebar problem after update #349281

    Hey!

    Did you remove the grid.css modifications? I’m afraid, you can’t use it anymore unless you modify it again. Also, did you modify the sidebar width before? Do you have a code that looks something like this?

    function avia_increase_sidebar_size() {
    	global $avia_config;
    	
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
    }
    add_action( 'init', 'avia_increase_sidebar_size', 1);

    Please remove it.

    Best regards,
    Ismael

    in reply to: Glitches in Enfold? #349280

    Hi!

    Your first 3 questions on your first post are basically the same. All you need is to control the menu on the sidebar on different pages. We suggested to use the Custom Menu widget to create custom sidebar menus then add the Widget Logic Plugin to control the visibility of the widget. If you’re trying to show this widget on a specific category, you need the is_category() conditional function. For single post pages, you can use the is_single() function. Please refer to the wp conditional codex for more info: http://codex.wordpress.org/Conditional_Tags

    If you’re developer is having difficulty configuring the plugin options, please post the login details here and set it as a private reply. We’ll try to create a few examples which she can follow.

    Try to remove the tab on the blog page with this on Quick CSS:

    .page-id-3381 .tabcontainer.top_tab {
    display: none;
    }

    I’ll ask the rest of the support team to check the thread. Maybe they have better idea on how to create custom menus on different pages.

    Best regards,
    Ismael

    in reply to: Wrong image article when i share to social #349278

    Hey!

    Please remove the code then use the WordPress SEO plugin. Go to SEO > Social then enable the Add Open Graph meta data setting.

    Best regards,
    Ismael

    in reply to: Anchor Link Grid Row #349276

    Hey!

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    1.) Can you please create a test page with the animated numbers element and decimal numbers?

    2.) Use css media queries to adjust the font size of the icon box title. You can use this selector:

    .iconbox .iconbox_content .iconbox_content_title
    

    3.) I’m sorry but videos are disabled on mobile devices due to incompatibility issues. You can try to use the layer slider.

    4.) Try this on Quick CSS:

    .main_color .avia-color-theme-color-subtle {
    background-color: #fcfcfc;
    color: #666666;
    }

    Best regards,
    Ismael

    in reply to: About Japanese Localization for Enfold 3.0.2 #349271

    Hi!

    That string is not translated yet or the ja.po file is not complete. We are relying on Enfold users to translate the theme simply because we’re not experts on other languages. Please use the Codestyling Localization plugin to be able to fetch the string and translate it. Refer to this link: https://kriesi.at/support/topic/how-to-translate-enfold-site-with-wpml-correctly/#post-162796

    Regards,
    Ismael

    in reply to: Text editor issue in Enfold 3.0.2 ? no linebreaks being added. #349269

    Hey fristil!

    Thank you for using Enfold.

    Can you please give us a link to the actual website? A temporary login details will help. We are aware of the issue but we are still not sure what’s causing it. For now, you can add hr whitespace element / shortcode to act as a line break. Please refer to this link for a temporary fix:

    https://kriesi.at/support/topic/simple-inline-html-codes/#post-285559

    Cheers!
    Ismael

    in reply to: Creating Anchors on page to link to from within page #349263

    Hey!

    You can find the Color Section on the Advance Layout Builder > Layout Elements panel.

    Regards,
    Ismael

    in reply to: Search in hamburger-menu (top) on mobile only #349262

    Hey!

    You can check the site now. The search icon is added beside the mobile menu toggle.

    Regards,
    Ismael

    in reply to: WPML #349260

    Hi!

    Thank you for the info.

    Please add this on functions.php to remove the theme’s default flag configuration:

    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);
    }

    Make sure that you set the main menu on WPML > Display the language switcher in the WP Menu setting.

    Regards,
    Ismael

    in reply to: Left Nav/Sidebar Width on Mobile #349258

    Hi LAHWebDesigns!

    After adding the media query, you should remove the other code.

    .html_header_sidebar #top #header {
    max-width: 250px !important;
    }
    .html_header_left #main {
    margin-left: 250px !important;
    }

    Best regards,
    Ismael

    in reply to: No flexible header with transparent header #349257

    Hey!

    Thank you for the screenshots.

    You can deactivate the Sticky Header on Enfold > Header Layout > Header Behavior panel.

    Cheers!
    Ismael

    in reply to: Avia Builder not work #349254

    Hey!


    @tabfilip
    : We checked the Advance Layout Builder with Chrome and it works fine. What is the current version of your Chrome browser? This is the test page: http://teamplast.pl/test-alb/

    Regards,
    Ismael

    in reply to: Issue with table since update #349253

    Hey!

    Thank you for the update.

    I checked the site and it loads fine every time I refresh the page. Yes, adjusting the container width fixed the table too. From what I remember, we deleted a custom css code that overrides the max width of the container.

    Cheers!
    Ismael

    in reply to: Altered Featured Image Height in blog #349249

    Hi!

    Glad it worked. If you still have questions, let us know.

    Regards,
    Ismael

    in reply to: How to implement Google Search with Enfold? #348633

    Hey!

    Sorry for the delay. I’m not sure why it’s not working on the Quick CSS. Have you tried adding it on the child theme’s style.css file?

    Best regards,
    Ismael

    in reply to: Redirects #348630

    Hi!

    Yes, thank you. I wonder why the redirect code is not working. On my installation, it works fine. Please replace the code with this:

    RedirectMatch 301 ^/wp-content/$ la-appraisal.com/
    RedirectMatch 301 ^/wp-content/dir/$ la-appraisal.com/
    

    If it doesn’t work, you may need to find a plugin or hire a freelance developer to configure the redirection for you.

    Regards,
    Ismael

    in reply to: Change Top Border Color in enfold Menues #348627

    Hi!

    Thank you for the screenshot.

    You change the top border color of the sub menu with this:

    .html_header_top .header_color .main_menu ul:first-child >li > ul, .html_header_top #top .header_color .avia_mega_div > .sub-menu {
    border-top-color: red;
    }

    Cheers!
    Ismael

    in reply to: Mega Menu being cut off #348625

    Hi!

    Thank you for using Enfold.

    I checked the site and the mega menu looks fine. Can you please provide a screenshot of the issue?

    Cheers!
    Ismael

    in reply to: Putting another social icon in the secondary menu #348620

    Hi!

    The tripadvisor icon is not available on the fontello icon set. Add this on line 17 of functions.php:

    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Trip Advisor'] = 'tripadvisor';
    return $icons;
    }

    Add the trip advisor icon on Enfold > Social Profiles panel. Use this on Quick CSS:

    li.social_bookmarks_tripadvisor {
    background: url('IMAGE ICON URI HERE');
    background-position: center center;
    background-repeat: no-repeat;
    }

    Use your own tripadvisor icon image on the value of the css background property.

    Best regards,
    Ismael

    in reply to: Sensei and Advanced Layout Editor #348609

    Hey!

    I’m sorry but you can’t use the advance layout builder for sensei pages but you can alter the template. Please refer to this link: https://kriesi.at/support/topic/enfiold-and-learning-plug-ins/#post-296429

    Regards,
    Ismael

    Hi 666666!

    Thank you for using Enfold.

    Only the social icons are included on the theme package. Other are built exclusively for the kriesi site. If you know how to use Google Inspector or Firebug, you can easily copy the double button.

    Best regards,
    Ismael

    in reply to: WP 3.9 Avia Visual Issue (blank) #348605

    Hi!

    Please download the latest version 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/

    I’m sorry but we won’t be able to help you trace back the modifications made on the theme by the previous administrator.

    Regards,
    Ismael

    in reply to: Adding an hyperlinked image to header #348604

    Hey!

    We changed the code a bit. Please get it here: http://pastebin.com/247SuptA

    Regards,
    Ismael

    in reply to: Social icons disappear #348603

    Hey mandkbishop!

    Thank you for using Enfold.

    Please try this on Quick CSS or custom.css:

    #top .social_bookmarks {
    z-index: 150;
    -webkit-backface-visibility: visible;
    }

    Regards,
    Ismael

    in reply to: Mobile responsive not working #348601

    Hey!

    1.) You can change the background position of the fullscreen slider with this:

    .avia-fullscreen-slider .avia-slideshow>ul>li {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center !important;
    }

    Change the caption text size with this:

    @media only screen and (max-width: 479px) {
    .responsive #top .slideshow_caption h2 {
    font-size: 50px !important;
    }
    }

    2.) Use this to modify the image size:

    @media only screen and (max-width: 479px) {
    .home .flex_column.av_one_fifth.first.avia-builder-el-3.el_before_av_four_fifth.avia-builder-el-first .avia-image-container-inner img {
    width: 60%;
    margin: 0 auto;
    }
    }

    You can also use the Custom CSS Class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Regards,
    Ismael

Viewing 30 posts - 54,061 through 54,090 (of 67,491 total)