Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Retain HTML in excerpts

    #14097

    OK, I’ve just implemented this in the theme. Will be available in the upcoming version 1.3.

    Admin

    In reply to: Slider not showing at all

    #13479

    Hurm..ok..did you by any chance made any changes to the theme’s codes? Also, did you have any new functions in the child theme’s functions.php file (assuming you have a child theme)?

    Admin

    In reply to: Slider not showing at all

    #13477

    At the bottom of the Slider Options tab there’s a checkbox for “Disable slider”. Make sure that is unchecked. Sorry if I’m repeating myself, but that’s really the most probable reason, as the HTML codes for the slider is not being output to the page at all.

    Admin

    In reply to: Left and right arrows bug with IE

    #13358

    Hi Fonfon,

    Sorry it’s been so long. Here’s the latest file: http://www.khairul-syahir.com/files/antiaris.zip

    Admin

    In reply to: Print-Stylesheet

    #11218

    The print stylesheet has indeed been added to the theme, and will be available in the upcoming version 1.3. You can see the changelog for version 1.3 here: https://forum.graphene-theme.com/topic/alpha-graphene-13a

    Admin

    In reply to: Centering an Adsense block

    #13558

    Add this code either into your child theme’s style.css file, or in the theme’s Custom CSS option:

    .sidebar-wrap .textwidget{
    text-align: center;
    }
    Admin

    In reply to: Slider only shows home page category

    #13549

    The slider will show by default the latest 5 posts that belong to the category that you’ve selected, regardless of whether or not those posts belong to other catgories as well or not.

    You can change the number of posts to be displayed in the slider in the theme’s options page.

    Admin

    In reply to: Changing what the view full post button links to

    #13546

    You can first hide the current “view full post” button using CSS, and then add your modified “view full post” button by using child theme and action hook.

    That is, assuming you’re familiar with CSS, PHP, child theme, and WordPress action hooks. Not easy to achieve if you’re not familiar with those stuffs.

    Admin

    In reply to: Slider above 2 columns

    #13545

    Create a child theme, then create a new functions.php file inside your child theme folder. Then add this code inside your child theme’s folder:

    <?php
    /* Modify the place slider is hooked to */
    function graphene_slider_remove_action(){
    remove_action('graphene_top_content', 'graphene_display_slider');
    }
    add_action('init', 'graphene_slider_remove_action');
    add_action('graphene_before_content-main', 'graphene_display_slider');
    ?>

    Then you will need to modify the widths of the slider elements using the child theme’s style.css file. I recommend using the Firebug plugin for Firefox to identify which elements need the width modified.

    Admin

    In reply to: Comment Author Profile

    #13537

    Bala, you are not doing it right. There is no need to copy any of the theme’s files at all. Make sure you read properly on how to set up a child theme: https://forum.graphene-theme.com/topic/how-to-modify-the-theme-using-a-child-theme

Viewing 10 posts - 5,051 through 5,060 (of 6,030 total)