Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Dropdowns within a dropdown not smooth

    #16107

    Try restoring all of the theme’s CSS codes for the navigation part. Then it’ll be easier to help you customise it to how you wanted.

    Admin

    In reply to: Grey rectangle in slider

    #16141

    This is how it’s supposed to look like:

    20hrhg0.png

    And yes, the background is taken from the featured image of the post.

    Admin

    In reply to: Trying to get rid of post on my homepage

    #16153

    Add into your Custom CSS option:

    .home .post-4 {
    display: none;
    }
    Admin

    In reply to: Blurred header image

    #13071

    It doesn’t look blurred to me: http://tinypic.com/r/qnjog7/7

    Admin

    In reply to: Different header menus when using multiple languages

    #16152

    You might want to use the WPML plugin for your multilingual needs. It has exactly the feature you want (i.e. different menus for different languages). However, I should caution you that it’s not free, though you can get an older, free version from the WordPress plugin repository.

    Admin

    In reply to: Latest post shows twice

    #16149

    Hurm..just to make sure that it’s really an issue with theme, try switching to the default theme and see whether the issue is still there.

    Admin

    In reply to: Combining php and HTML in child functions

    #16146

    To insert HTML code in PHP codes, there are two ways. First way:

    <?php
    function foobar(){
    echo '<p>This is some HTML which will be printed out (i.e. "echoed") to the screen</p>';
    }
    ?>

    Second way:

    <?php
    function foobar(){
    // Some PHP codes
    ?>
    <p>This is some HTML which will be printed out to the screen.</p>
    <?php
    // Some more PHP codes
    }
    ?>

    To prevent the slider from being displayed in excerpts, you can use the is_singular() conditional:

    function graphene_custom_content_related_posts_slider(){
    if( function_exists('get_related_posts_slider') && is_singular() ){
    get_related_posts_slider();
    }
    }
    add_action( 'graphene_after_post_content', 'graphene_custom_content_related_posts_slider' );

    That way, the slider will only be displayed on singular pages, i.e. single post page, single page page, single attachment page.

    Admin

    In reply to: Change Nav Menu Text to Pictures

    #16167

    I think the easiest way to achieve this is simply to use CSS to hide the text, and then apply the image you want as a background image. Something like:

    #header-menu > li > a > strong {
    display: none; /* This hides the text */
    }
    #header-menu > li.page-item-4 > a {
    background: url(path/to/image.png) no-repeat; /* Apply background to the Home menu item */
    }
    Admin

    In reply to: Issues with Widgets in Chrome

    #16100

    I have the same version of Chrome as you (Chrome automatically updates itself whenever there’s new version available). Maybe you can post a screenshot showing exactly how things are not working on your end?

    Admin

    In reply to: different image in header for post

    #16148

    Graphene Options > Display > Header Display Options

Viewing 10 posts - 4,391 through 4,400 (of 6,030 total)