RSS / Icons

  • rtober

    #490

    Hi again,

    I added several social icons near the RSS feed icon at the top of the page.

    1. Is it possible to change the RSS Icon image to match the rest of the icons? (I couldn’t find it in the image file).

    2. The RSS image is appearing beneath all the other images. I used this code:

    function graphene_social_icons(){ ?>
    <a href="http://www.facebook.com/sample" title="Facebook"><img src="http://www.sample.org/facebook.png" /></a>
    <a href="http://www.twitter.com/sample" title="Twitter"><img src="http://www.sample.org/twitter.png" />
    </a>
    <?php
    }
    add_action('graphene_feed_icon','graphene_social_icons');
    ?>

    3. How can get minimize the space between the icons? I used this code in the child theme’s style.css:

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

    Thank you for being so patient with me!

    Admin

    Syahir Hakim

    #12680

    Your website URL?

    Kadi

    #12681

    oops forgot to add it

    http://www.ms-saudi.org/wordpress/

    Admin

    Syahir Hakim

    #12682

    Remove this:

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

    Add this:

    #rss a {
    float: right;
    margin: 13px 10px 0 0;
    }
    #rss a.rss_link{
    margin-right:23px;
    }

    Kadi

    #12683

    I changed it, thanks. what do I do to lessen the space between the icons?

    should I start a new thread for the first two questions?

    Admin

    Syahir Hakim

    #12684

    Have you added the code?? I don’t see it on the website.

    Kadi

    #12685

    yes, I added it to child theme’s style.css.

    sorry I just noticed I had a code that shouldn’t have been there…the spacing is fine now.

Viewing 7 posts - 1 through 7 (of 7 total)

  • You must be logged in to reply to this topic.