Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Keep slider on the home page

    #11892

    Oh yes, just remove the codes on line 2:

    if (is_home())
    Admin

    In reply to: Keep slider on the home page

    #11890

    Add this code to your child theme’s functions.php file:

    function graphene_display_slider(){
    if (is_home())
    graphene_slider();
    }

    function graphene_scrollable() {
    $interval = (get_option('slider_speed')) ? get_option('slider_speed') : 7000;
    ?>
    <!-- Scrollable -->
    <script type="text/javascript">
    //<![CDATA[
    jQuery(document).ready(function($){
    $(function() {
    // initialize scrollable
    $("#slider_root").scrollable({circular: true}).navigator({
    navi: ".slider_nav",
    naviItem: 'a',
    activeClass: 'active'
    }).autoscroll({interval: <?php echo $interval; ?>});
    });
    });
    //]]>
    </script>
    <!-- #Scrollable -->
    <?php
    }
    Admin

    In reply to: Slider not moving

    #12563

    Use CSS absolute positioning.

    Admin

    In reply to: Slider not moving

    #12561

    On line 10 and 11, delete these two lines:

    ?>
    <?php

    On line 16, delete this line:

    ?>

    At the end of the file, add this line:

    ?>
    Admin

    In reply to: Slider not moving

    #12559

    Copy and paste your entire functions.php file here.

    Admin

    In reply to: Slider not moving

    #12557

    Try adding this code to your child theme’s functions.php file:

    function graphene_scrollable() {
    $interval = (get_option('slider_speed')) ? get_option('slider_speed') : 7000;
    ?>
    <!-- Scrollable -->
    <script type="text/javascript">
    //<![CDATA[
    jQuery(document).ready(function($){
    $(function() {
    // initialize scrollable
    $("#slider_root").scrollable({circular: true}).navigator({
    navi: ".slider_nav",
    naviItem: 'a',
    activeClass: 'active'
    }).autoscroll({interval: <?php echo $interval; ?>});
    });
    });
    //]]>
    </script>
    <!-- #Scrollable -->
    <?php
    }
    Admin

    In reply to: Cant change text and size of older posts

    #12695

    Since you’re using an older version of the theme, you’d need to use child theme to safely modify the colour without losing the modification the next time you update.

    Insert this code into your child theme’s style.css file:

    #previous, #previous a, #previous a:visited, #next-post, #next-post a, #next-post a:visited {
    color: #929292;
    }

    Change the colour value to whatever colour you want.

    Admin

    In reply to: Slider not moving

    #12555

    Dude..how can I inspect the codes if you disabled the slider?

    Admin

    In reply to: Slider not moving

    #12553

    OK, I see what you wanna do. What’s the URL to your website?

    Admin

    In reply to: Show post author's gravatar

    #12711

    Yes, I’m aware of this and has been fixed. Will be available in the next update.

Viewing 10 posts - 5,281 through 5,290 (of 6,030 total)