Forum Replies Created

Viewing 30 posts - 3,241 through 3,270 (of 3,706 total)
  • Author
    Posts
  • 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

    in reply to: H1, letter spacing #356659

    Hey!

    Glad I could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: How do I remove the date from a comment on a post? #354322

    Hi!

    Glad I could help you.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Can not edit anything on my website… Fatal error appears! #354257

    Hi!

    Thank’s for coming back.

    Did you check with your hoster, what is the maximum php memory limit? This should be at least 128MB.
    Probably you (or your hoster) have to increase this in the php.ini also.

    Enfold does not load complete – even not the settings page.

    You can also try to reinstall Enfold – maybe something went wrong when uploading. Try to use FTP.

    Best regards,
    Günter

    in reply to: Is it possible to view and edit a pages html? #354219

    Hey!

    I hope, it will help you.

    Feel free to come back with further questions.

    Enjoy the theme.

    Regards,
    Günter

    in reply to: Is it possible to view and edit a pages html? #354205

    Hey!

    Thank you for coming back.

    Sorry, not out of box again. But you can try to modify the following file:

    enfold\config-templatebuilder\avia-shortcodes\buttons.php

    The function shortcode_handler handles the output of the button.
    popup_elements handles the input elements in the popup window. Here you can add an additional inputfield to identify your button.

    I hope, this will help you.

    Cheers!
    Günter

    in reply to: Post Content #354199

    Hey!

    There is a ; missing – sorry, my mistake. Replace the code above with:

    
    add_filter('avf_title_args', 'my_title', 10, 2);
    
    function my_title($args, $post_id)
    {
    
    $args['title'] = 'your title';
    
    return $args;
    }
    

    Cheers!
    Günter

    in reply to: How do I remove the date from a comment on a post? #354186

    Hi Micheal0424!

    Not out of the box.

    You have to modify enfold\includes\loop-comments.php.

    Look for the following line (app. line 41) and remove it:

    
     <?php printf(__('%1$s at %2$s','avia_framework'), get_comment_date(),  get_comment_time()) ?>
    

    Best regards,
    Günter

    in reply to: Remove logo from homepage only? #354179

    Hey!

    Thank you for using our theme.

    Easiest would be to put in Enfold->Styles->QUICK Css field or custom.css the following:

    
    .home .logo img {
        display: none !important;
    }
    

    Best regards,
    Günter

    in reply to: Is it possible to view and edit a pages html? #353760

    Hi!

    Thanks for coming back.

    Look at: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/.

    This enables you to add custom classes to your elements.

    It is not recommended to use the debug feature in real life sites due to security reasons and unless you are sure, what you are doing.

    Make a complete copy of your database and WP directory before you use the debug feature.
    Worst thing is you have to restore your database and WP directory from your backup.

    Alternativly you can check it out in a test environment before.

    Regards,
    Günter

    in reply to: Different BG Colors every TR from Data Table #353751

    Hi!

    Try the following and adjust color values:

    
    .avia-data-table tr:nth-child(2n) td {
        color: red !important;
        background: none repeat scroll 0 0 green !important;
    }
    
    .avia-data-table tr:nth-child(2n+1) td {
        color: green !important;
        background: none repeat scroll 0 0 red !important;
    }
    

    Best regards,
    Günter

    in reply to: Dashboard blank after Enfold theme activation #353742

    Hey Tim!

    Thank you for using our theme.

    Have a look at this post.

    Seems to be the same problem.

    Cheers!
    Günter

    in reply to: Can not edit anything on my website… Fatal error appears! #353720

    Hi Damian!

    Thank you for using our theme.

    Seems to be a php memory problem.

    Try to increase memory. Open wp-config.php and at the end before the line

    
    if ( !defined('ABSPATH') )
    	define('ABSPATH', dirname(__FILE__) . '/');
    

    add the following:

    
    define( 'WP_MAX_MEMORY_LIMIT', '256M' );
    

    It might be necessary to check with your hoster to increase memory.

    Also try also do deactivate all plugins and reactivate the plugins step by step and check the function of the theme. It might also be a plugin prioblem.

    Best regards,
    Günter

    in reply to: Different BG Colors every TR from Data Table #353716

    Hi jrmayer!

    Thank you for using our theme.

    Have a look a this post:

    https://kriesi.at/support/topic/data-table-questions/

    Maybe it helps to answer your question,

    If not, please send us a link to the page, so we can have a look.

    Best regards,
    Günter

    in reply to: Is it possible to view and edit a pages html? #353705

    Hi tjswarbs78!

    Thank you for using our theme.

    The best way to achieve this is with jQuery. I would give the buttons and images unique id’s or classes and after loading the page I would attach the “onclick” handler with jQuery.

    The js file with this code can be loaded in the WP action hook ‘wp_print_styles’.

    Regards,
    Günter

    in reply to: Form Button Colors #353687

    Hey!

    Glad I could help you to solve your request. Enjoy the theme.

    Feel free to come back with further questions.

    Best regards,
    Günter

    in reply to: Post Content #353588

    Hi!

    To change blog title you can use a filter. In functios.php add the following:

    
    add_filter('avf_title_args', 'my_title', 10, 2)
    
    function my_title($args, $post_id)
    {
    
    $args['title'] = 'your title';
    
    return $args;
    }
    

    Regards,
    Günter

    in reply to: Post Content #353575

    Hey om_eraydin!

    Thank you for using our theme.

    If you want to reduce the space between title and headline put in Enfold->Styles->QUICK-CSS field or custom.css and adjust the value:

    
    .single-post .content {
    padding-top: 30px !important;
    }
    

    To align the title and date put in Enfold->Styles->QUICK-CSS field or custom.css:

    
    
    #top .fullsize .template-blog .post-meta-infos {
        text-align: left !important;
    }
    
    #top .fullsize .template-blog .post-title
    {
    text-align: left !important;
    margin: 0 !important;
    }
    

    Regards,
    Günter

    in reply to: Form Button Colors #353546

    Hey!

    Try to put the following in Enfold->Styles->QUICK-CSS field or custom.css:

    
    .postid-104 .button {
    // put your styling code here
    }
    

    Regards,
    Günter

    in reply to: Add padding around logo in header #353530

    Hey valprice!

    Thank you for using our theme.

    You can put the CSS in Enfold->Styles->QuickCSS field or you can add it to file custom.css.

    Regards,
    Günter

Viewing 30 posts - 3,241 through 3,270 (of 3,706 total)