Post Titles in Numix Post Slider cannot be read

  • tadick

    #9559

    Hi,

    I’m using the Numix Post Slider instead the Graphene build in Slider because I want such a slider on a specific page and not in the homepage.

    First I tried the child theme workaround but that did not work – I think that the slider functions are not longer in functions.php but in theme-slider.php and I do not undestand how to change that in the child theme. If there is a actual workarund which is explanining it – I like the Graphene Slider 😉

    So now I’m using Numix Post Slider an the post titles are not shown completely – only by half:

    Picture 1

    I’m sure, this is caused by the them, because I tried an other theme and the entire post titles are shown:

    Picture 2

    Could you please tell me, how to fix that?

    tadick

    #43936

    … child theme working 🙂

    Anonymous

    #43937
    Quote:
    … child theme working 🙂

    You should post how you have solved it so people with similar problems know how to fix it.

    tadick

    #43938

    This is my `/wp-content/themes/graphene-child/functions.php’:

    <?php

    function graphene_display_slider(){

    if (is_page(67) || is_archive()){
    graphene_slider();
    add_action('wp_footer', 'graphene_scrollable');
    }
    }

    function custom_enqueue_scripts(){
    if ( ! is_admin() ) { // Front-end only
    wp_enqueue_script( 'graphene-jquery-tools' ); //jQuery Tools
    , required for slider
    }
    }

    add_action( 'wp_enqueue_scripts', 'custom_enqueue_scripts' );

    ?>

    I think I had written if (is_page('67') || is_archive()){ instead if (is_page(67) || is_archive()){

Viewing 4 posts - 1 through 4 (of 4 total)

  • You must be logged in to reply to this topic.