Forum Replies Created

Viewing 30 posts - 3,001 through 3,030 (of 3,742 total)
  • Author
    Posts
  • in reply to: Redirect directly to a specific pop up lightbox #398214

    Hey!

    Glad we could help you. Enjoy the theme.

    Come back with further questions – but open a new thread please.

    Best regards,
    Günter

    Hi!

    Use the following CSS – put in QuickCSS or custom.css:

    
    .mfp-container .hidden {
        position: relative !important;
    }
    

    Regards,
    Günter

    in reply to: Img Size change – enfold function and child theme function #398198

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: grid.css has a comma that needs to be removed #397697

    Hi!

    I added as a bugfix change. It will probably be added by kriesi in the next update.

    Sorry for any inconvenience caused by this.

    Enjoy the theme.

    Cheers!
    Günter

    in reply to: Apostrophes and Backslashes #397693

    Hey Global_UK!

    Thank you for using our theme.

    I had a look at the link you gave us – all seems to look fine.

    Can you point out the problem more clearly – a screenshot would be helpful.

    Regards,
    Günter

    in reply to: Shortcode inside Avia Page Builder #397680

    Hey Tim!

    Thank you for using our theme.

    Did you try the ALB Element “Blog Posts”. There you can select “Display entries from a custom taxonomy” and that should display your custom post types in the next select box “Which Entries”. And you can select grid layout and the # of colums you want.

    You can also have a look into the core files:

    config-templatebuilder\avia-shortcodes\blog.php
    config-templatebuilder\avia-shortcodes\postslider.php

    and try to change the query params there directly or via a hook function.

    Come back if you need more help.

    Regards,
    Günter

    in reply to: Changing theme titles to upper and lower case #397672

    Hi!

    Glad you found a solution. Enjoy the theme.

    Regards,
    Günter

    in reply to: Different color for textbox #397666

    Hi!

    Correct. That should work.

    If not, send us a link to the page where the problem occurs so we can check.

    Regards,
    Günter

    in reply to: Fullwidth Contents #397586

    Hey!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS try to put the following and adjust the values:

    
    .container_wrap.fullsize .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    

    Cheers!
    Günter

    in reply to: Different color for textbox #397578

    Hi!


    @muuclemens
    :

    If you are working with a child theme, you NEED NOT copy the files functions.php and functions-enfold.php.

    You only need to add those modifications to child themes function.php that you need and the other 2 files are loaded automatically by WP.

    So restore the original Enfold Child theme.

    In functions.php of the child theme look for:

    
    /**
     *	Turn on Custom CSS Class field for all Avia Layout Builder elements
     *	@link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
     */
    	//add_theme_support('avia_template_builder_custom_css');
    

    and replace it with:

    
    /**
     *	Turn on Custom CSS Class field for all Avia Layout Builder elements
     *	@link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
     */
    	add_theme_support('avia_template_builder_custom_css');
    

    Now you should see the custom CSS field in the ALB Elements.

    In styles.css of the child theme you also only need to put your additional customizations.

    Cheers!
    Günter

    in reply to: Create a Buy Now Button for use with PayPal #397564

    Hey databuzz!

    Thank you for using our theme.

    Out of the box – no.

    You have to alter the core file: config-templatebuilder\avia-shortcodes\table.php.

    Look for the functions pricing_table and data_table to modify.

    Best regards,
    Günter

    in reply to: updating from another theme #397482

    Hey!

    Glad we could help you.

    Enjoy the theme.

    Cheers!
    Günter

    in reply to: Darstellung von Preis, Versand und MwSt. #397480

    Hey!

    Freut uns, dass wir Dir helfen konnten.

    Viel Freude mit dem Theme.

    LG
    Günter

    in reply to: Add Phone number (large) to right of logo #397475

    Hey!

    You can also try to use:

    
    #text-2.widget_text {
        left: 250px !important;
        position: relative;
        top: -125px !important;
    }
    
    .header-scrolled #text-2.widget_text {
        left: 250px !important;
        position: relative;
        top: -100px !important;
    }
    
    

    Regards,
    Günter

    in reply to: Adding the layout builder to posts and custom post types #397425

    Hi DROR!

    Thank you for coming back.

    Out of the box – no.

    The layout builder is supposed to style pages. Posts are the content of pages – that might lead to recursions and breaking the html structure and unpredictable results.

    If you know what you are doing – of course you can try to use shortcode of the ALB elements in a post – but this is not supported by us.

    Best regards,
    Günter

    in reply to: Darstellung von Preis, Versand und MwSt. #397419

    Hi!

    Wenn ich Dich richtig verstehe, möchtest Du **** (1 Kundenrezession) in einer Zeile und etwas nach unten verschoben.

    Ersetze

    
    .entry-summary .woocommerce-product-rating .star-rating {
    top: 15px;
    position: relative;
    }
    

    durch

    
    .entry-summary .woocommerce-product-rating {
        position: relative;
        top: 5px !important;
    }
    

    und passe den Wert an.

    Cheers!
    Günter

    in reply to: Orange solid line at the bottom of a section #397398

    Hi!

    Thank you for coming back.

    To have the line only on the front page try to use:

    
    .page-id-362 #av_section_1 {
        border-bottom: 3px solid orange !important;
    }
    

    Cheers!
    Günter

    in reply to: edit tag TITLE on social image profile changed by myself #396906

    Hey!

    Glad we could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Blog Post Grid Layout On Single Post #396905

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: background social toolbar #396898

    Hey Dutchman!

    Try to use the following in QuickCSS or custom.css:

    
    #main {
        background: url("//www.reisfreaks.com/wp-content/uploads/2013/04/bghomev445.jpg") repeat scroll center top #ffffff !important;
    }
    

    Best regards,
    Günter

    in reply to: Darstellung von Preis, Versand und MwSt. #396874

    Hey!

    Entweder in custom.css am Ende oder, falls nur wenige Modifikationen in Enfold->Styles->QuickCSS Feld.

    Versuche es einmal. Falls Du Probleme hast, lege uns einen Admin Zugang an und wir helfen Dir.

    Regards,
    Günter

    Hi!

    Thank you for coming back.

    I would advise to use this filter hook and not to modify the core file.

    You can use the hook as follow:

    
    add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3);
    function avf_change_which_archive($output)
    {
    
          // put here your code to modify $output;
    
                return $output;
    }
    

    $output is the string ready for output. If you want to remove parts of the string you can do it with a code similar to:

    
     $output = str_ireplace ( 'Archive for category:', '', $output);
    

    Or you can add parts of the core file to modify $output.

    Hope, this will help you.

    Do not forget at the end of the function:

    
         return $output;
    

    Cheers!
    Günter

    in reply to: Sidebar widgets background colour #396854

    Hey!

    Thank you for coming back.

    Try to use the following:

    
    .sidebar .widget_mc4wp_widget {
        background: none repeat scroll 0 0 red;
    }
    

    You probably will have to add some padding also.

    Each widget also has a unique ID you can use.

    Best regards,
    Günter

    in reply to: Custom form fields width and Submit button #395167

    Hi!

    Thank you for coming back.

    It is not possible for us to support all 3rd party plugins.

    We try to help you with small adoptions, but it is out of scope of support to implement and support that plugin.

    Cheers!
    Günter

    in reply to: Get rid of big row spaces on mobile devices #395128

    Hi crewneck!

    Try to put it in a media Query and adjust the width value:

    
    @media only screen and  (max-width: 989px) {
        .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
    	margin: 0 0 0px !important;
    	width: 100%;
    }
    }
    

    Best regards,
    Günter

    in reply to: Custom form fields width and Submit button #395119

    Hey!

    Glad we could help you.

    I’ll leave this post open for further inquiries to this topic for you.

    Best regards,
    Günter

    in reply to: White border 1px under my footer. Cant get rid of it? #395114

    Hey crewneck!

    Thank you for coming back.

    Try the following:

    
    
    #footer {
        max-height: 50px !important;
    }
    

    I think it was caused by the backgriund image, which is only 50px high

    Regards,
    Günter

    in reply to: Custom form fields width and Submit button #395108

    Hey JTV Digital!

    Thank you for using our theme.

    You can use a code like that:

    
    #mc_signup_form input {
        width: 100% !important;
    }
    
    #mc_signup_form select {
        width: 100% !important;
    }
    
    

    And add your stylings.

    Cheers!
    Günter

    in reply to: Question regarding the Partner/Logo Element (avia framework) #395089

    Hey Lev!

    Thank you for coming back.

    Sorry, but there is no easy way. This popup is realized as a tooltip and not part of the HTML structure – so we have no chance to display it.

    You must modify the core file: enfold\config-templatebuilder\avia-shortcodes\logoslider.php, if you want to integrate it.

    But this is customizations and bejond the scope of support.

    Regards,
    Günter

    in reply to: Transparent background for Accordions #395064

    Hey sensationallife14!

    Thank you for using our theme.

    Try to put the following in Enfold->Styles->QuickCSS or custom.css:

    
    .toggle_content {
        background: none repeat scroll 0 0 transparent !important;
    }
    

    For the headline use:

    
    .toggler {
        background: none repeat scroll 0 0 transparent !important;
    }
    

    If it does not work, can you post us a link to your page so we can checlk for the CSS.
    You can do it as a private reply.

    Regards,
    Günter

Viewing 30 posts - 3,001 through 3,030 (of 3,742 total)