Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: how to add a facebook icon next to rss icon at the top of theme

    #11432

    Try inserting this code in your child theme’s style.css file:

    #rss a{
    margin-left:10px;
    }
    #rss a.rss_link{
    margin-left:23px;
    }

    Modify the margin-left property for the #rss a element and leave the margin-left property for the #rss a.rss_link.

    Admin

    In reply to: Height of slider post too short,how do I adjust?

    #11654

    The latest version of the theme includes an option to specify the slider’s height. I noticed that you’re using version 1.0.9.3 of the theme. Upgrade to the latest version and you should see the option in the theme’s options page.

    Admin

    I’m not sure what you’re referring to, as there is no subscription widget included with the theme. Are you using other plugin for this function?

    Admin

    In reply to: adding categories and subcategories to front page

    #11599

    You can either use the widget or add the categories/subcategories to the navigation menu.

    Admin

    In reply to: how to make the width flexible???

    #11576

    I would suggest using Firebug (a Firefox add-on) to identify the ID or class of the elements that need changing, then change them using child theme CSS.

    Admin

    In reply to: Replace slider with "Featured Content Gallery"

    #11652

    Put this code in your child theme’s functions.php file:

    <?php
    function graphene_fcg(){
    include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php');
    }
    add_action('graphene_top_content', 'graphene_fcg');
    ?>
    Admin

    In reply to: how to pull a banner image from a URL

    #11647

    I’m not sure if you can use a .php file in the background-image url.

    Admin

    In reply to: Help with front page.

    #11639

    If you follow this instruction on how to create a static front page, it should all work properly: http://codex.wordpress.org/Creating_a_Static_Front_Page

    Admin

    In reply to: clean content

    #11646

    Sorry, can’t help you here. You should try asking the plugin author instead.

    Admin

    In Andrew’s code, you need to replace the URL in the <img src="http://yourlink.com" /> with the URL to your icon. While I’m at that, you’d probably want to add the alt attribute to the <img> tag as well so that if for some reason the image is not available, the alt text will be displayed.

    <img src="http://link.to.image" alt="Image alternate text" />

    Sorry for the late reply. I’ll be away on vacation and won’t be able to reply to this forum as often.

Viewing 10 posts - 5,751 through 5,760 (of 6,030 total)