Forum Replies Created

Viewing 30 posts - 54,961 through 54,990 (of 67,485 total)
  • Author
    Posts
  • in reply to: Margin between one half columns #336603

    Hey Richard!

    Thank you for using Enfold.

    Please replace this code:

    @media only screen and (max-width: 990px) {
    div .av_one_third, div .av_two_third {
    margin-left: 0%;
    width: 50%;
    }}

    With:

    @media only screen and (max-width: 990px) {
    div .av_one_third, div .av_two_third {
    margin-left: 3%;
    width: 47%;
    }
    }

    Cheers!
    Ismael

    in reply to: 3.0 Update – Sidebar Issue #336601

    Hey!

    I would like to check the dashboard but /wp-login or /wp-admin redirects me to 404 page.

    Regards,
    Ismael

    in reply to: Duplication in blog's breadcrumbs #336600

    Hi darkban!

    Thank you for using Enfold.

    The “Blog” text on the right is the page title. If you want, you can disable that. Edit the page, look for Layout > Title Bar Settings, choose hide both. Or use this on Quick CSS or custom.css to remove the blog title:

    .page-id-1051 .alternate_color.title_container .main-title {
    display: none !important;
    }

    Regards,
    Ismael

    in reply to: Change size gallery images #336599

    Hey ariane1001!

    Thank you for using Enfold.

    Please edit the gallery element then look for the Gallery Preview Image Size and Gallery Big Preview Image Size. If you want to change the size of the thumbnails and set the crop parameter to false, you can use this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Regards,
    Ismael

    in reply to: Enfold Slider Options…. #336593

    Hey erussell!

    Thank you for using Enfold.

    You can use the Fullscreen Slider. Add html codes or text on the images’ caption field.

    Regards,
    Ismael

    Hi Greg!

    Thank you for using Enfold.

    Please refer to this link: https://kriesi.at/support/topic/heading-and-menu/#post-335841

    Regards,
    Ismael

    in reply to: Remove table borders #336591

    Hi ThomasNorden!

    Thank you for using Enfold.

    You can use this:

    .table.footerTabell tr:first-child th, .table.footerTabell tr:first-child td, tr th:first-child, .table.footerTabell tr td:first-child, .table.footerTabell td {
    border: none;
    }

    Best regards,
    Ismael

    in reply to: Add event categories to Upcoming Events (Plugin Addition) #336588

    Hi leviticus!

    Thank you for using Enfold.

    I’m not sure if this is going to help but you can add a unique selector to any elements on the advance layout builder except for column layouts. Refer to this link for more info:
    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Edit the upcoming events element then scroll below. Add the category as a unique css selector on “Custom Css Class” field.

    Regards,
    Ismael

    in reply to: Child Theme > Plug-In > Add New #336586

    Hey John!

    Thank you for using Enfold.

    Which plugin are you trying to use? I’m sorry, just fyi, we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author.

    Best regards,
    Ismael

    in reply to: Using portfolio in a simple way… Just show it? #336585

    Hi Peter!

    Thank you for using Enfold.

    I’m sorry but there is no shortcode to show a certain portfolio item inside a post. You can however use the Post Slider element to show the portfolio items.

    Cheers!
    Ismael

    in reply to: Menu Stops at 75 Items #336584

    Hey schuttjon!

    Thank you for using Enfold.

    Please ask your host to increase the max_input_vars values. Refer to this thread for more info: https://wordpress.org/support/topic/menu-size-limit

    Cheers!
    Ismael

    in reply to: wp4 + enfold bug? #336582

    Hey!


    @antoinebro
    : Did you update the theme to 3.0.1? Please give us a link to the actual website.

    Regards,
    Ismael

    in reply to: Photography Menu Layout #336572

    Hi KirinDesign!

    Thank you for using Enfold.

    Please go to Enfold > General Layout > Logo and Main Menu.

    Cheers!
    Ismael

    in reply to: Can we do this header layout? #336571

    Hi!

    Thank you for using Enfold.

    That header will require a bit of customization. You can remove the menu border with this:

    .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li:first-child a, .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li a, .html_bottom_nav_header.html_logo_center #top #menu-item-search>a {
    border: none;
    }

    Apply a background on the menu container with this:

    
    #header #header_main_alternate {
    background: orange;
    }

    Use the menu ids to separate some of the menu. If you use firebug, the menu id will look like this:

    <li id="menu-item-3195"
    

    Best regards,
    Ismael

    in reply to: Testimonial Slider not showing Name or Subtitle #336568

    Hey!

    Please add this on Quick CSS or custom.css:

    #top .av-large-testimonial-slider .avia-testimonial-meta-mini {
    text-align: center;
    }

    This is how it looks on desktop:

    Regards,
    Ismael

    in reply to: Mobile content width overflows and hidden outside of window #336567

    Hi!

    This is how it looks on iPhone 4 emulator. Contents are rendered properly:

    Best regards,
    Ismael

    in reply to: section color not closing a div #336563

    Hi!

    Did you add any woocommerce functions or hooks? Please give us login details. We would like to check it.

    Cheers!
    Ismael

    in reply to: Code in tag #336560

    Hey!

    You can use the wp_head action hook if you don’t want to edit header.php file. http://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

    Something like this:

    function add_custom_script(){
    ?>
    <script>
    SCRIPT HERE
    </script>
    <?php
    }
    add_action('wp_head', 'add_custom_script', 10);

    Cheers!
    Ismael

    Hey ryanchai911!

    Thank you for using Enfold.

    Please give us a link to the actual page with the issue. If you have a cache or minify plugins, please disable them then test the images again.

    Best regards,
    Ismael

    in reply to: Problem nach Update / Some issues after update #336556

    Hi fotograf561!

    Thank you for using Enfold.

    Please try to reconfigure any settings on Theme Options > Header then save changes. See if that changes anything. Please remove this code on Quick CSS or custom.css:

    #header_main .container, .main_menu ul:first-child > li a, .logo img, .logo a {
    height: 225px !important;
    max-height: 225px !important;
    margin-bottom: 15px;
    }

    Regards,
    Ismael

    in reply to: Enfold & NexGen Pro Gallery #336553

    Hi!

    NGG is quite heavy compare to the theme’s default plugin. That’s why we added the Lightbox Modal Window option to let users choose their own lightbox plugin. I’ll ask Dude to take a look.

    Best regards,
    Ismael

    in reply to: MapifyPro question #336552

    Hey!

    Thank you for using Enfold.

    Mapify pro seems to be a good plugin but unfortunately, we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author for further support. You can adjust the Zoom Level of the google map element if tool tips are overlapping each other.

    Regards,
    Ismael

    Hi!

    You can use the column layouts to separate the content. Base on the screenshot, you need a Color Section with 1 1/1 and 2 1/2 column layouts inside.

    Best regards,
    Ismael

    in reply to: Some problems #336549

    Hi izquierdomasmotter!

    Thank you for using Enfold.

    1.) Please add this on functions.php to use the default WPML language switcher:

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

    2.) Yes, you can copy the includes folder plus the file then modify it there.

    3.) Please add this on Quick CSS or custom.css:

    .avia-menu.av-main-nav-wrap {
    float: right;
    }
    
    div .logo {
    float: left;
    position: relative;
    left: 0;
    }
    
    .main_menu {
    position: relative;
    }

    Best regards,
    Ismael

    in reply to: Replacing icons with images #336547

    Hey!

    Thank you for using Enfold.

    1.) Instead of using the icon element, use the Image element.

    2.) Add a custom id for the color section, use hide-background for example. Add this on Quick CSS:

    @media only screen and (max-width: 767px) {
    #hide-background {
    background-image: none !important;
    }
    }

    Best regards,
    Ismael

    in reply to: Fullwitdh panorama #336546

    Hey c3conseils!

    Thank you for using Enfold.

    Please use the Color Section then set the image as background image. Set the Background Repeat to Stretch to Fit.

    Cheers!
    Ismael

    in reply to: Class in a specific element in a ICON LIST #336544

    Hey!

    You can target the sub elements inside the icon list using css child selectors. Something like this:

    
    .open-popup-link-button ul li:first-child { }
    .open-popup-link-button ul li:nth-child(1) { }
    .open-popup-link-button ul li:nth-child(2) { }
    .open-popup-link-button ul li:last-child { }
    

    Refer to this link for more info about child selectors: http://css-tricks.com/how-nth-child-works/

    Best regards,
    Ismael

    in reply to: Big issue with Enfold 3.0.1 + WP4 : AVIA "breaks up" #336543

    Hi!


    @Alexoidea
    : Which specific page are you referring to? Please give us a link. Did you add any html codes on that page?


    @welswebmaster
    : Thank you for pointing that out. I hope it helps other.

    Best regards,
    Ismael

    in reply to: bottom of page disappears when editing #336541

    Hi!

    Thank you for the info.

    I created a test page, added a bunch of elements then published it. Get back, added elements again then update. No contents are being erased. As you can see there are 4 revisions and no contents are erased every time I updated the page so that means that problem is on the specific page that you’re editing. This is the test page: http://gronskys.com/wp-admin/post.php?post=461&action=edit&message=1

    Cheers!
    Ismael

    Hi Alexoidea!

    Thank you for using Enfold.

    Can you please give us a link to the actual page where you lose content after clicking “update”? Did you add any html codes on that page? Make sure that you close the html tags properly or you might lose content below that specific tag.

    Best regards,
    Ismael

Viewing 30 posts - 54,961 through 54,990 (of 67,485 total)