Forum Replies Created

Viewing 30 posts - 55,591 through 55,620 (of 67,216 total)
  • Author
    Posts
  • in reply to: Logo is compressed in mobile version #323480

    Hey!

    Use this to adjust the height and position of the logo on mobile device:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    height: 55px !important;
    max-height: 55px !important;
    }
    
    .responsive .logo {
    margin-left: 15px;
    }
    }

    Cheers!
    Ismael

    in reply to: Creating a grid of images which are linked to pages #323478

    Hey Annemarie!

    Thank you for using Enfold.

    You can use the masonry gallery if you want a custom link for each image but you can also insert 1/4 column layouts. Add the Image element on each columns then configure the Image Link? option.

    Cheers!
    Ismael

    in reply to: WooCommerce cart #323476

    Hey!

    Maybe this plugin will help: https://wordpress.org/plugins/woocommerce-menu-bar-cart/

    Regarding the button text, you can use this on functions.php:

    add_filter( 'add_to_cart_text', 'woo_custom_cart_button_text' );                                // < 2.1
    add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' );    // 2.1 +
     
    function woo_custom_cart_button_text() {
     
            return __( 'My Button Text', 'woocommerce' );
     
    }

    Regards,
    Ismael

    in reply to: Footer widgets new tab, and portfolio filter. #323471

    Hi!

    This a limitation of the sort function. Items should be present on the current page before they can be filtered. Showing all items on a single page is the only workaround for now if you want all items sorted via category.

    Best regards,
    Ismael

    in reply to: Parallax / Page builder / Revolution Slider #323467

    Hi!

    The advance layout builder and wp bakery visual composer have a lot in common, unfortunately, they won’t work well together because of script conflicts. You can use the Video element if you want o embed videos. In case you have questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Best regards,
    Ismael

    Hey jeremysecondary!

    Thank you for using Enfold.

    The website link is missing. Please make sure that you’re running Enfold 2.9.2 with WordPress 4.0.

    Best regards,
    Ismael

    Hey!

    You can manually change the footer color of the home page with this:

    .main_color div .news-headline, .footer_color a {
    color: #ffffff !important;
    }
    
    .footer_color span {
    border-color: #444444 !important;
    }

    Regards,
    Ismael

    in reply to: WooCommerce Shop Catalog Image Borders #323459

    Hey!

    If you want to separately control the border of the product items, try this:

    .inner_product {
    border: none;
    }
    
    .inner_product .thumbnail_container {
    border: 1px solid red;
    border-bottom: none;
    }
    
    #top .inner_product_header {
    border: 1px solid blue;
    border-bottom: none;
    }
    
    .avia_cart_buttons {
    border: 1px solid orange !important;
    border-top: none;
    }

    Regards,
    Ismael

    in reply to: Alignment issue with color section 4 cols in ipad portrait #323457

    Hi mrwerner!

    Thank you for using Enfold.

    Please try adding this on Quick CSS or custom.css:

    and (max-width: 989px) and (min-width: 768px) {
    .home #trial .flex_column.av_one_fourth.avia-builder-el-46.el_after_av_one_fourth.el_before_av_one_fourth {
    margin-top: -65px;
    }
    }

    Best regards,
    Ismael

    in reply to: Header Logo doesn't resize for ipad mini #323453

    Hi!

    Thank you for the update.

    I’m testing this by resizing the browser and it looks fine under 1024px. Please try this on Quick CSS or custom.css to force the height of the header container:

    @media only screen and (max-width: 1024px)
    #header_main .container, .main_menu ul:first-child > li a {
    height: 90px !important;
    line-height: 90px !important;
    }
    }

    Alright. Didn’t know it has been removed, if you want to show the icon shortcode, you can edit includes > helper-main-menu.php. Find this code on line 66:

    $phone			= $headerS['header_phone_active'] != "" ? $headerS['phone'] : "";
    

    Replace it with:

    $phone			= $headerS['header_phone_active'] != "" ? do_shortcode($headerS['phone']) : "";
    

    Best regards,
    Ismael

    in reply to: paragraph in layerslider overflows what i expect #323451

    Hi!

    Glad you figured it out. Yes, there is a word-wrap option. I also didn’t notice that before. :)

    Cheers!
    Ismael

    in reply to: Masonry-Portfolio Color Overlay #323446

    Hi!

    You can add this on Quick CSS or custom.css if you want to increase the masonry columns:

    #top .container .av-masonry-entry {
    width: 25%;
    }

    Cheers!
    Ismael

    Hey!

    Thank you for the screenshot.

    You can use this:

    .header_color .container_wrap_meta {
    background: black;
    }
    
    .header_color .phone-info, .header_color .phone-info a {
    color: white;
    }

    Change the social icon colors with this:

    .header_color .social_bookmarks a {
    color: white;
    }

    Regards,
    Ismael

    in reply to: Bullet List no longer works #323442

    Hey Snerp!

    Thank you for using Enfold.

    Are you referring to the html list tag? Or the icon list? I tested the html code on a test post and the bullet points work fine: http://thelinkedincode.com/test/

    Best regards,
    Ismael

    in reply to: Issue with Categories and Tags when using Masonry grid #323441

    Hey!

    I think I already answered that one on another topic of yours. You can hide the masonry title and content for mobile devices: https://kriesi.at/support/topic/what-code-can-resolve-this-masonry-issue-on-mobiles/

    Regarding the masonry sort function, you can vote or post the feature on our Feature Requests page. I doubt any kind of premium themes available in the market have that kind of sort function but I may have not seen one yet.

    Regards,
    Ismael

    in reply to: Only Home Page with background different #323439

    Hey!

    Thank you for the screenshot.

    Edit the page then insert the Color Section element. Edit the section and apply the background image. Set the options as you like and don’t forget the Section Minimum Height setting. You can add the content inside the Color Section. In case you have questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Best regards,
    Ismael

    in reply to: Darstellung Aufzählung in WooCommerce Artikelbeschreibung #322891

    Hi Kai!

    Thank you for using Enfold.

    Please use this to add bullet points:

    #top div div.product .woocommerce-tabs .panel ul li,  #top div div.product .woocommerce-tabs .panel ul {
    list-style: disc outside;
    margin-left: 10px;
    }

    Regards,
    Ismael

    in reply to: Which customer support service/plugin are you using? #322889

    Hi!

    I think Kriesi can answer that better. I’ll ask him to take a look.

    Cheers!
    Ismael

    Hi webWahine!

    Thank you for using Enfold.

    Yes, it has to do with WP 4.0. 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/

    Looks like you didn’t update the theme for quite a long while now. The update might break a few configuration that you have. You might need to edit the theme options again and create some other elements from scratch.

    Cheers!
    Ismael

    in reply to: Gallery Page acting weird #322886

    Hey!

    Thank you for using the theme.

    You forgot to add the link to the gallery. Is this fixed now?

    Best regards,
    Ismael

    in reply to: header does not resize #322877

    Hey ayanasoul!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css to fix the size of the logo:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    height: 60px !important;
    max-height: 60px !important;
    top: 5px;
    }
    }
    
    @media only screen and (max-width: 480px) {
    .responsive .logo a, .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    height: 55px !important;
    max-height: 55px !important;
    top: 5px;
    }
    }

    Can you please revert the menu back to its original size? Try using this to adjust the width of the menu container:

    @media only screen and (min-width: 1140px) {
    .responsive #header_main_alternate .container {
    width: 1200px;
    }
    }

    Cheers!
    Ismael

    in reply to: Header Logo doesn't resize for ipad mini #322875

    Hey!

    Thank you for using Enfold.

    You can use this to adjust the size of the logo on iPad view:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_slide_out .logo img {
    margin: 0;
    max-height: 80px !important;
    top: 2px;
    }
    }
    

    Changing the max-height will automatically adjust the width of the logo. Yes, you can add icons on the extra elements field. Generate the icon shortcode on a temporary post or page using the shortcode wand then place it on the Phone Number or small info text field.

    Cheers!
    Ismael

    in reply to: Email subject from contact form wrong #322870

    Hi dianasuen!

    Thank you for using Enfold.

    Did you add any modifications on the theme? Please double check the contact form field settings. Maybe you accidentally fill up the E-Mail Subject field with the Message Sent label value.

    Regards,
    Ismael

    in reply to: Gravity Forms Image "Animation" Conflict. #322867

    Hi!

    Glad you figured that out. If you still have questions, let us know. :)

    Regards,
    Ismael

    in reply to: Size of 'Price' text #322866

    Hi rpl_admin!

    Thank you for visiting the support forum.

    Yes, that is possible. Please use this on Quick CSS or custom.css:

    .single-product .price span {
    font-size: 25px !important;
    }

    Regards,
    Ismael

    in reply to: Show Ratings in Shop view #322865

    Hi rpl_admin!

    Thank you for using the Enfold theme.

    Please add this on Quick CSS or custom.css:

    .inner_product .rating_container {
    opacity: 1 !important;
    }

    Best regards,
    Ismael

    in reply to: Layer Slider not working #322864

    Hi!

    Thank you for visiting the support forum.


    @dsharpe
    : Do you mind if we take a look at the actual website? Did you install the layer slider as stand alone plugin?


    @JuliePopovich
    : Do have the layer slider installed on Choices? The theme doesn’t fully support this slider.

    Cheers!
    Ismael

    in reply to: Contact Form – Centered? #322863

    Hi maxosbon!

    Thank you for using Enfold.

    What do you mean by “response text”? A screenshot of the page with the centered contact form will help.

    Regards,
    Ismael

    in reply to: Issue with picker "Footer Background Color" #322861

    Hi GooseRay!

    Thank you for using Enfold.

    Did the actual alternate content font color change to violet after you save the changes? You can test this by adding a color section then set the Section Colors to Alternate Content. Add a text block. Make sure that you’re running Enfold 2.9.2 on WordPress 4.0.

    Regards,
    Ismael

    in reply to: center PHONE INFO Top Menu Bar #322860

    Hi Justin!

    Thank you for using Enfold.

    Please use this:

    nav.sub_menu {
    position: absolute;
    top: 55px;
    right: 10px;
    }
    
    .av_phone_active_right .phone-info {
    float: none;
    text-align: center;
    }

    Cheers!
    Ismael

Viewing 30 posts - 55,591 through 55,620 (of 67,216 total)