Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Menu item to the right

    #15502

    Ken’s right. Using Firebug, you can identify that the ID for the Contacto menu item is menu-item-431, so inserting this code in your Custom CSS or child theme’s style.css file will do it:

    #menu-item-431 {
    float: right;
    }
    Admin

    In reply to: width for the slider images

    #15536

    If you modified the slider width, you would need to modify the width that WordPress automatically crops images into.

    You will need a child theme for this. Insert this code in your child theme’s functions.php file (create one if it doesn’t exist yet):

    <?php
    function graphene_custom_slider_image_width(){
    return 445; // Change this value to your slider's width
    }
    add_filter( 'graphene_slider_small_image_width', 'graphene_custom_slider_image_width' );
    ?>

    445px is the theme’s default slider width. Change it to your customised width.

    Admin

    Version 1.0.7 is such an old version, and a lot would have changed in the theme. But as long as you didn’t change the theme’s code yourself, you shouldn’t lose anything. All your posts and pages and other content will not be touched at all.

    Be aware though that design-wise, the theme has come a long way since the early versions, and there has been a substantial design modifications. You should check out the demo site to see the latest version of the theme in use.

    Admin

    What version of WordPress are you using?

    Admin

    Please update to the latest version 1.4.1 and let me know if the problem still exists.

    Admin

    In reply to: The amount of Twitter followers in my Twitter widget

    #15460

    No tentative date yet. I’ve just submitted version 1.4.1 to the theme repository, which contains many bugfixes (but not this feature). Maybe a week or two, we’ll see. Not really keen on pushing updates any more often than that, unless it’s to fix critical bugs.

    Admin

    In reply to: The amount of Twitter followers in my Twitter widget

    #15458

    Not yet, but will be. I’ve just added the feature to the theme. Thanks for the suggestion!

    Admin

    In reply to: Navigational menu dropdown arrow formatting issue

    #15454

    Looks like you customised the menu through a child theme in previous versions. Version 1.4 featured a complete rewrite of the navigation menu function, so the old customisations for the menu will not work anymore.

    Just remove the customisations for menu in your child theme, and it should be fine.

    Admin

    In reply to: Hide archived posts older than 6 months

    #15451

    Not through the theme settings, no. You’d need to write custom codes to do that. Much easier to use a plugin, I would say, if there is one.

    Admin

    In reply to: Removal of element

    #15464

    Disable the feature in Graphene Options > Display > Posts Display Options > Show post author’s info

Viewing 10 posts - 4,601 through 4,610 (of 6,030 total)