• Hi there!

    First of all: The theme is wonderful! It’s doing everything I want and I’m super satisfied!

    Two questions:

    1) How can I change the slider dimensions? I really need it to be smaller.

    2) The following error message appears on the center of my website:

    Warning: implode(): Invalid arguments passed in /home/hello582/public_html/teste/wp-content/themes/bose/featured.php on line 12

    I still haven’t changed anything on the child theme, so the existing child theme code is still the original one:

    <?php
    //
    // Recommended way to include parent theme styles.
    //  (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
    //
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
        wp_enqueue_style( 'child-style',
            get_stylesheet_directory_uri() . '/style.css',
            array('parent-style')
        );
    }
    //
    // Your code goes below
    //

    I haven’t got any clue about what the problem is. Could anyone help me?

    Thanks a lot!

  • The topic ‘How can I change slider dimensions?’ is closed to new replies.