Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Issues with Widgets in Chrome

    #16098

    It appears fine on my end:

    wujbtc.png

    Admin

    In reply to: Options->Display->Submenu width cannot be reset

    #16129

    This has been fixed and will be available in the next update. In the mean time, the default value for the submenu width is 200px.

    Admin

    In reply to: Favicon in Graphene 1.2

    #12970

    You can use either .png, .gif, or .ico, since those are the three formats that you can use as favicon as defined in the W3C standards.

    Admin

    In reply to: Home page posts categories broken with sticky posts

    #16128

    Glad it works out for you 🙂

    Admin

    In reply to: Shuffle Slider post (random)

    #12444

    Select the category you want to be shown in the slider, then add this in your child theme’s functions.php file:

    <?php
    function graphene_randomise_slider_posts( $args ){
    $args = array_merge( $args, array( 'orderby' => 'rand' ) );
    return $args;
    }
    add_filter( '', 'graphene_randomise_slider_posts' );
    ?>
    Admin
    Admin

    In reply to: Not XHTML 1.0 Strict

    #16124

    OK, fixed.

    Admin

    In reply to: Generic Image Call in Functions

    #16122

    That error is usually caused by the mentioned file outputting a character when it isn’t supposed to. Check your child theme’s functions.php file to see if you have an extra space between the opening <?php and closing ?> tags at or about line 40.

    To change the generic image, just add this in your child theme’s functions.php file:

    function graphene_custom_generic_img(){
    return '<img alt="" src="'.get_stylesheet_directory_uri().'/images/img_slider_generic-GCGOP.png" />';
    }
    add_filter( 'graphene_generic_slider_img', 'graphene_custom_generic_img' );
    Admin

    In reply to: Thanks, colours and widgets

    #16116

    Hi Mark,

    The colour codes that you entered is missing a hash (#) in front of it. Colour codes in CSS take the following form:

    #123abc

    That is, it always starts with a hash character, followed by either 3 or 6 hexadecimal colour values.

    Admin

    In reply to: Issues with Widgets in Chrome

    #16096

    What’s the URL to your site?

Viewing 10 posts - 4,401 through 4,410 (of 6,030 total)