Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Place a widget beside a slider (1column page)

    #11314

    Hi Michael,

    You can use one of the action hooks in the theme to output the content, and then use CSS absolute positioning to position it beside the slider.

    The code should be something like this below (place it in your child theme’s functions.php):

    function graphene_custom_content(){
    if (is_front_page()) {
    ?>

    <div id="graphene_custom_content">
    <!-- The content goes here -->
    </div>

    <?php
    }
    }
    add_action('graphene_before_content', 'graphene_custom_content');
    Admin

    In reply to: header image

    #11356

    It’s actually 900 x 198 pixels

    Admin

    In reply to: Header Option

    #11159

    I’m pretty sure that’s not valid XHTML, since inline element (<a>) cannot contain a block-level element (<div>).

    Admin

    In reply to: Symbols not showing

    #11351

    I tried entering the symbol mu and another greek symbol, and they show up fine. Did you enter them using the “Insert custom character” button on the WordPress editor?

    Admin

    In reply to: Gravatar showing on pages

    #11349

    I see…in that case no, there’s no option to disable the gravatar on pages, unless you modify the source code, which isn’t recommended cause then you’ll lose the changes when you update the theme.

    The easiest way I can think of right now is to use a child theme, and just use CSS to hide the gravatar in pages. I believe the following CSS codes would do:

    .page .post-meta p.post-author img.avatar{
    display:none;
    }

    I will remove the gravatar from pages in the next update.

    Admin

    In reply to: Gravatar showing on pages

    #11347

    There’s an option in the Graphene Display options page. Under Posts Display Options, make sure the Show post author's gravatar is unticked.

    Admin

    In reply to: Header

    #11305

    The slider image is only 150 x 150 px. There’s no reason to upload images bigger than that for the slider image. Just resize your image to be less than 900 x 198 px and the featured image won’t replace the header.

    Admin

    In reply to: Colours and images

    #11344
    Admin

    In reply to: Changed Sprite Images and Css, but not showing on website

    #11319

    Yes, you can do that. Just because I use sprite images for most of the backgrounds doesn’t mean that you should too. In fact, it’s much easier to not use individual images instead of sprite images for background, especially if you want to customise certain element’s background.

    But of course, using sprite image has its performance advantage. But using individual images for just one or two background shouldn’t give much of a difference.

    Admin

    In reply to: number of tweets in the twitter widget

    #11188

    I can’t seem to reproduce this bug..It’s working fine in my test server..

Viewing 10 posts - 5,861 through 5,870 (of 6,030 total)