Forum Replies Created

Viewing 30 posts - 22,081 through 22,110 (of 82,625 total)
  • Author
    Posts
  • in reply to: Font size changed after Update #776617

    Hi,


    @Designweb
    Thanks for your help :)

    Best regards,
    Yigit

    in reply to: Portfolio grid #776339

    Hi,

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

    in reply to: Masonry broke after updating to 4.0.5 #776338

    Hi,

    Please see private content field below :)

    Best regards,
    Yigit

    in reply to: Hover menu cannot be seen #776333

    Hi,

    Not at all!
    You can simply try activating plugins one by one to find the culprit :)
    Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

    in reply to: How replace Mobile menu icon with png image? #776113

    Hey pmwarman!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #advanced_menu_toggle:before,  #advanced_menu_hide:before { visibility: hidden; } 
    #advanced_menu_toggle { background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; }
     #advanced_menu_hide { background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; }

    Best regards,
    Yigit

    Hey!

    Please go to enfold/config-templatebuilder/avia-shortcodes/postslider.php file and find

    
    $meta .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    

    and change it into

    
    $meta .= "<time class='slide-meta-time updated' $markup>" .tribe_get_start_date( $entry->ID )."</time>";
    

    We would recommend you to use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and apply the changes there – http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Best regards,
    Yigit

    in reply to: Enfold Shop demo, how to get the Woocommerce working #776101

    Hi,

    You are welcome!

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: header background color with media selector #776098

    Hi,

    Your both codes are missing a closing curly brackets. It should be as following

    #top .av_header_glassy.av_header_transparency #header_main {
        background-color: rgba(34, 34, 34, 0.6);
        border-color: rgba(245, 255, 255, 0.2);
        border-bottom-width: 2px;
        border-top-color: transparent;
    }
    @media only screen and (max-width: 767px) {
    .av_header_transparency #advanced_menu_toggle {
        background-color: #ffffff;
        color: #a90d0d;
        border-color: #a90d0d;
    }}

    Best regards,
    Yigit

    Hi,

    You can do either. If it becomes unnecessary, you can simply delete the file :)
    Let us know if you have any other questions or issues!

    Best regards,
    Yigit

    in reply to: Portfolio grid #776092

    Hey!

    Please try adding following code to Quick CSS as well

    .grid-entry .inner-entry {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    If that does not help, please post a screenshot showing the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here

    Cheers!
    Yigit

    in reply to: Portfolio Grid Row Titles row overlap #776089

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    div .av_one_fifth { height: auto !important; }}
    

    Best regards,
    Yigit

    in reply to: Portfolio grid #776083

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .grid-entry-title {
        font-size: 16px;
        font-weight: 100;
    }
    

    Best regards,
    Yigit

    in reply to: Hover menu cannot be seen #776078

    Hi!

    Sorry for the late reply!
    Could you please try de-activating all active plugins and check if that helps?

    Regards,
    Yigit

    in reply to: Bug footer links vs spacer in my page #776076

    Hi,

    I added following code to Quick CSS

    .footer_color a { color: white; }

    please review your website now

    Best regards,
    Yigit

    in reply to: Font Weight appears thicker than Google Fonts preview #776071

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-chrome .avia_textblock p { -webkit-font-smoothing: antialiased; }
    

    Best regards,
    Yigit

    in reply to: Font size changed after Update #776065

    Hi!

    Can you please update WooCommerce to 3.0.1 as well? Also, i did not notice anything unordinary with font sizes on your site

    Best regards,
    Yigit

    in reply to: H1 doubled in Posts #776054

    Hi,

    No, now your code says “use Div if single post or category page”

    You can use

    add_filter('avf_title_args', 'change_title_tag', 10, 2);
    function change_title_tag($args,$id)
    {
    if(!is_single() || !is_category()){
            $args['link'] = get_permalink($id);
            $args['heading'] = 'div';
    }
    else{
            $args['link'] = get_permalink($id);
            $args['heading'] = 'h1';
    }
        return $args;
    }

    Best regards,
    Yigit

    • This reply was modified 9 years ago by Yigit.
    in reply to: Social share buttons in footer – tooltips cut off #776050

    Hey vincemilia,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #footer #text-6 {
        overflow: visible;
    }
    

    Best regards,
    Yigit

    in reply to: Backend now in english??? #776049

    Hey!

    Can you please update Enfold to the latest version 4.0.5 – kriesi.at/documentation/enfold/updating-your-theme-files/?
    It should not be related but we can cross it off the list. I noticed you have some custom codes in functions.php file of the theme. Please have a backup of the files you modified including functions.php, as you are not using a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/, they will be overwritten when you update the theme

    Best regards,
    Yigit

    in reply to: Enfold – how to add phone number to header? #776035

    Hi,

    Unfortunately, since header does not have widget area out of the box, we are not able to show you any example however there are many Enfold users that are using it.

    Another alternative would be using simple CSS and HTML in Phone info field in Enfold theme options > Header > Extra Elements. You can add numbers as following

    
    Here is your number Here is your other number 
    

    and you can hide these numbers and only show on certain pages by adding following code to Enfold theme options > General Styling > Quick CSS

    .number-one, .number-two { display: none; }
    .page-id-59 .number-two { display: block; }
    .page-id-79 .number-one { display: block; }

    You can simply replace page ID’s.

    Best regards,
    Yigit

    in reply to: Masonry Caption (Wrongly displayed on mobile device) #776029

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 480px) {
    .responsive #top .av-masonry-entry {
        width: 100% !important;
    }}
    

    Best regards,
    Yigit

    in reply to: Change Logo Size #776007

    Hey!

    Please remove following code

    strong.logo {
        width: 340px!important;
    }

    and add following instead

    .html_header_sidebar .logo {
        padding: 20px;
    }

    Regards,
    Yigit

    in reply to: Earn Thousand of Dollars with DealBuddy #775991

    Hi Sophie!

    Thanks for contacting us!

    We have forwarded your proposal to Kriesi. If interested, he will contact you :)

    Cheers!
    Yigit

    in reply to: generate banner #775990

    Hi!

    Thank you for contacting us!

    It would be easier if you could find a plugin, maybe such as this one – http://wordpress-advertising.tunasite.com/visual-banner-creator/. Having it custom coded might be more expensive for you :)

    Let us know if you have any Kriesi themes related questions :)

    Cheers!
    Yigit

    in reply to: Backend now in english??? #775653

    Hey!

    Adding CSS code would not change the language of your installation. I see “Note: The WPLANG constant in your wp-config.php file is no longer needed.” warning on general settings page. Can you please check wp-config.php file and make sure WPLANG constant is not there?

    Best regards,
    Yigit

    in reply to: White Background in Tables and Gallery #775630

    Hey!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), #top .main_color .avia-data-table.avia_pricing_minimal td,#top #wrap_all .avia-gallery .avia-gallery-thumb a {
        background: transparent!important;
    }
    

    Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Yigit

    in reply to: Advanced LayerSlider not activating #775614

    Hi,

    Most features should work. If you would like to install LayerSlider as a standalone plugin, please firstly see – http://kriesi.at/documentation/enfold/deactivate-the-layerslider-plugin/

    @mensmaximus
    Thanks! :)

    Best regards,
    Yigit

    • This reply was modified 9 years ago by Yigit.
    in reply to: Tab section vs. Color section #775604

    Hey!

    Since they will 50px paddings on both sides, they should look correct on mobile as well. Please make sure to edit your Grid Row to select to display each cell on its own on mobile :)

    Cheers!
    Yigit

    in reply to: HTML showing up in accordion title #775603

    Hi,

    Sorry for the late reply!

    Have you figured it out by using “Read more” instead? :)

    Best regards,
    Yigit

    in reply to: Enfold Showcase #775600

    Hi,

    @Ralf You can refer to this post – http://kriesi.at/documentation/enfold/enable-cors/ to fix the issue @beeluckylady mentioned. If you have further questions, please start a new thread as we only use this thread to showcase our websites and to see what other users think about them :)


    @beeluckylady
    Good catch! :)

    Best regards,
    Yigit

    • This reply was modified 9 years ago by Yigit.
Viewing 30 posts - 22,081 through 22,110 (of 82,625 total)