Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Move slider to bottom

    #11276

    Nope, I don’t think so I’ll do that. I really don’t want to clutter the theme’s Options page with options that not many people will use.

    Admin

    In reply to: how to adjust the width of columns

    #11271

    You need to change the width CSS property of the following elements:

    Increase the width of these elements:

    #content-main
    .post
    .entry

    Decrease the width of these elements by the same amount you increased the width of the above elements:

    #sidebar-right
    .sidebar div.sidebar-wrap
    Admin

    In reply to: Move slider to bottom

    #11274

    Currently, you would have to copy the entire code for the slider, then hide the current slider using CSS, then create a new function that will display the slider inside the functions.php file in your child theme, then hook that new function to one of the action hooks available with the theme.

    Admin

    In reply to: how to adjust the width of columns

    #11269

    I don’t think I’ll be including that as an option in the backend for the theme. I just don’t see many users of the theme needing this change, so adding those options will only clutter the Options page.

    Please use a child theme to make this modifications instead.

    Admin

    In reply to: Header Image Size Change

    #11258

    The easiest way I can think of right now without modifying the theme’s codes is by defining your own widget area in the child theme’s sidebar.php, create a function that displays the widget area, hook that function to one of the action hooks available with the theme, and then use CSS absolute positioning to position the new widget area you just define.

    Not exactly easy, I know, but doable 🙂

    Admin

    In reply to: How to enable dropdown menus

    #11261

    Dropdown menu is already enabled by default. If you don’t set a Custom Menu using the WordPress’ Custom Menu function, the menu will display the pages as the menu items and their children will be the dropdown menu items.

    Admin

    In reply to: Top Header

    #11041

    The update has already been released. The current version already has action hooks included.

    Admin

    In reply to: One column

    #10949

    Hi mehulved,

    I suspect that the problem is caused by missing closing </div> when you remove the sidebar. Use Firebug (a Firefox extension) to investigate further.

    Admin

    In reply to: Header Image Size Change

    #11256

    In addition to changing the CSS codes you mention above, you also need to change several parameters. By using a child theme, put this code into functions.php file in your child theme:

    <?php
    function graphene_custom_header_width(){
    return 900;
    }
    function graphene_custom_header_height(){
    return 198;
    }
    add_filter('graphene_header_image_width', 'graphene_custom_header_width');
    add_filter('graphene_header_image_height', 'graphene_custom_header_height');
    ?>

    Change the values inside the functions to the corresponding width and height that you want.

    Note that this code in untested, but it should work. Let me know if you run into any problem.

    Admin

    In reply to: Slider Image

    #11008

    Just an update on the slider image. In the next update, you will be able to choose the image to use as slider image from the following options:

    1. First image in post

    2. The post’s Featured Image

    3. Custom image by URL

    In addition, you will also be able to set a global settings (e.g. use first image in post as slider image), but can override this settings in individual posts.

Viewing 10 posts - 5,891 through 5,900 (of 6,030 total)