Forum Replies Created

Viewing 30 posts - 3,211 through 3,240 (of 3,695 total)
  • Author
    Posts
  • in reply to: Enable Sticky posts #364041

    Hey kristenangel!

    Thank you for coming back.

    Sticky posts are a bit weird in WP and this is a known problem.

    Maybe this can help you:

    https://kriesi.at/support/topic/sticky-posts-not-working/
    https://kriesi.at/support/topic/functions-php-error/

    Cheers!
    Günter

    in reply to: Ich habe so viele Probleme – Sidebar #364039

    Hey mistral2!

    Danke für die Benützung des Forums.

    Versuche einmal ein leeres Textwidget in das Blog Sidebar widget zu geben, um die Anzeige von Defaults bei leeren Widgets zu unterdrücken.

    Sollte das nichts helfen, wäre ein Link zu der Seite hilfreich.

    Danke.

    Regards,
    Günter

    in reply to: Change font colour on menu button #364037

    Hey makeitbritish!

    Thank you for coming back.

    The menu ID changed.

    Use the following code:

    
    #menu-item-2752 a span{
    color: white;
    }
    

    Regards,
    Günter

    in reply to: How to add margin -top for only large screen. #364033

    Hi idpokute!

    Thank you for using our theme.

    You have to wrap your CSS in a media query like:

    
    @media only screen and (min-width: 1030px) {
         .your_class{
              margin-top:  20px !important;
            }
    }
    

    Put this AFTER the CSS code without media query and adjust the width.

    Regards,
    Günter

    in reply to: Hide Footer on Blog Posts #364032

    Hi rpl_admin!

    Thank you for using our theme.

    To hide the footer on single posts:

    In custom.css or Enfold-> Styles ->QuickCSS put the following:

    
    .single #footer {
        display: none !important;
    }
    

    Best regards,
    Günter

    in reply to: Reduce height of breadcrumb container #364031

    Hi!

    Thank you for coming back.

    Use the following CSS and put after the code above:

    
    @media only screen and (max-width: 767px) {
           .title_container .main-title {
                      visibility: hidden !important;
           }
    }
    

    You can replace the width also with 989 for portrait mobile or 480.

    Regards,
    Günter

    in reply to: Reduce space on top and below of footer #363508

    Hi nigellim68!

    Thank you for using our theme.

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

    
    #footer {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
    

    Cheers!
    Günter

    in reply to: Reduce height of breadcrumb container #363501

    Hey chantalinkdesign!

    Thank you for using our theme.

    To reduce the title and breadcrumb:

    Reduce the values for padding and you can use negative values for the margin. You can also set min-height to a value like 35px.

    
    #top .title_container .container {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
        min-height: auto !important;
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }
    

    Put this in custom.css or Enfold->Styles->QuickCSS field.

    To adjust the color section use the following and adjust the values:

    
    .home .container .entry-content-wrapper .custom-color-heading {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
        min-height: auto !important;
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }
    

    Cheers!
    Günter

    in reply to: CHANGE SEARCH BOX TEXT INPUT #363488

    Hey ezequiel15!

    Thank you for using our theme.

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

    
    #top #s,
    .header_color *::-moz-placeholder {
        color: #000 !important;
    }
    
    

    Cheers!
    Günter

    in reply to: Increase space below main menu and bottom of header #363485

    Hi!

    Thank you for using our theme.

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

    
    
    .main_menu > div {
        height: 55px !important;
    }
    

    Cheers!
    Günter

    in reply to: Sticky posts #362863

    Hey BarkProductions!

    Thank you for using our theme.

    Sticky posts are a bit weird – this is a WP Problem.

    Have a look at: https://kriesi.at/support/topic/functions-php-error/

    Maybe this will help you.

    Cheers!
    Günter

    in reply to: Breadcrumbs and page title question. #362848

    Hey!

    Thank you for using our theme.

    In custom.css or Enfold->Styling->QuickCSS try to pu the following:

    
    .title_container .main-title{
    float: right !important;
    }
    
    .title_container .breadcrumb{
    float: left !important;
    right: auto !important;
    }
    

    Cheers!
    Günter

    in reply to: icon list text – remove all capitals #362845

    Hey GGLNetwork!

    Thank you for coming back.

    Iconlist headers have h4 tag.

    
    h4{
    text-transform: none !important;
    }
    

    To limit changes to iconlist:

    
    .avia-icon-list h4{
    text-transform: none !important;
    }
    
    

    Best regards,
    Günter

    in reply to: How to change the blog font size #362837

    Hi!

    Thank you for coming back.

    To limit the changes to blog only you have to write the following code and change the value:

    
    .blog .entry-content p {
    font-size: 16px;
    }
    
    

    In Enfold -> General Styling at the bottom you find the input field Quick CSS. Put the text above in that field.

    Cheers!
    Günter

    in reply to: Is there any way to add PHP code into a post or page? #362833

    Hi!

    Thank you for coming back.

    You can use shortcodes to insert php inside a page or post, but you should not use them in code blocks.

    How to use and implement shortcodes see: http://codex.wordpress.org/Shortcode_API

    Regards,
    Günter

    Hey!

    Thanks for coming back and the feedback.

    Glad you could fix my bug.

    To add another path simply extend the array $child_path and seperate the paths with “,” like:

    
    array(
          dirname(__FILE__) .”/avia-shortcodes/”,
          "path_2",
          "path_3"
         );
    

    Best regards,
    Günter

    in reply to: Breadcrumbs and page title question. #362227

    Hi heinrichvk!

    Thank you for using our theme.

    Can you give us a link to your site so we can see your design?

    Cheers!
    Günter

    in reply to: Is there any way to add PHP code into a post or page? #362110

    Hey pnacho!

    Thank you for using our theme.

    Have a look at:

    https://kriesi.at/support/topic/codeblock-converts-php-code-into-html-comment-markup/

    You can’t use php codes inside the code block element and shortcodes are not recommended as it might break the theme code.

    Cheers!
    Günter

    Hey website2create!

    Thank you for using our theme.

    You have to tell Enfold to load this file.

    Make sure you have the same directory structrure as in the parent theme.

    In functions.php of the child theme put the following:

    
    //set the child theme folder that contains the modified shortcodes and make sure, it is the first element
    function add_child_shortcode_folder($paths)
    {
        if(! is_array( $paths ) )
        {
    		$paths = array();
        }
    	
    	$child_path = array(dirname(__FILE__) ."/avia-shortcodes/");
            
    	$paths = array_merge($child_path, $paths);
    	return $paths;
    }
    
    add_filter('avia_load_shortcodes','add_child_shortcode_folder', 1000);
    

    Cheers!
    Günter

    Hey bdm55!

    Thank you for using our theme.

    It looks as if your background image url(“//bdmorris.com/test1/wp-content/uploads/2014/11/burt-bg-2.jpg”) has a black 1px border. This results in the black 2px lines you can see. Try to change the image to one without borders.

    Best regards,
    Günter

    in reply to: Benutzerdefiniertes Widget #361453

    Hey!

    Freut uns, dass wir Dir helfen konnten. Viel Freude noch mit dem Theme.

    LG
    Günter

    in reply to: Customize Header #360904

    Hi hasbeat!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QUICK CSS try to put the following:

    1)

    
    #header_main_alternate {
        background: none repeat scroll 0 0 #009de0 !important;
    }
    

    2)

    
    #header_main_alternate .menu-item .avia-menu-text {
        color: #fff !important;
    }
    
    #header_main_alternate .menu-item.current-menu-item .avia-menu-text,
    #header_main_alternate .current-menu-item .avia-menu-text::hover
    {
        color: #000 !important;
    }
    
    

    Best regards,
    Günter

    in reply to: Avia button formatting problem #360887

    Hi steve159159!

    Thank you for using our theme.

    Can you give us the link to the page, where you use this button?

    Regards,
    Günter

    in reply to: Change font size original and discount price #360748

    Hey Ben!

    Thank you for using our theme:

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

    
    #top .price del .amount{
    font-size: 15px !important;
    }
    
    #top .price ins .amount{
    font-size: 19px !important;
    }
    

    You may also change font color or other settings for the font.

    Best regards,
    Günter

    Hi Jens!

    Thank you for using our theme.

    To hide the image:

    In custom.css or Enfold->Styles->Quick-CSS enter the following:

    
    .page-thumb img{
    display: none !important;
    }
    

    Cheers!
    Günter

    in reply to: Remove tooltip on Images on Mouseover #360738

    Hey!

    Glad I could help you. Enjoy the theme and feel free to come back with further inquires.

    Best regards,
    Günter

    in reply to: Add code to header #359087

    Hi Carsten!

    Thank you for using our theme.

    1) In functions.php at the end put the following:

    
    add_action('wp_head', 'trust_pilot_script');
    
    function trust_pilot_script()
    {
     echo '<script async type="text/javascript" src="//widget.trustpilot.com/bootstrap/v5/tp.widget.bootstrap.min.js"></script>';
    }
    
    

    2) I would use a code block element.
    See also https://kriesi.at/support/topic/how-to-use-code-block/

    Regards,
    Günter

    in reply to: Quick CSS in Child Theme ? #356679

    Hi Micheal0424!

    You should put all your changes in the child theme. When updating, you only update the parent theme, so the changes in the child theme are not modified.

    Cheers!
    Günter

    in reply to: font color #356671

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Create text box with custom background colour and border #356668

    Hi Raphep!

    Thank you for using our theme. It is a good idea to add !mportant to your custom CSS to make sure, that your styling is not overwritten.

    
    .new_box {
        background-color: #ff6600 !important;
        border-color: #ffffff !important;
        border-style: solid !important;
        border-width: 10px !important;
        padding: 20px !important;
    }
    

    Regards,
    Günter

Viewing 30 posts - 3,211 through 3,240 (of 3,695 total)