• Hi, there! I′m starting a blog and chose your nice theme.

    I would like to do the following:

    In the menu bar there is only the icon for the RSS feed. How can I add other icons next to it, like the facebook and twitter? I would like to have the facebook like in the menu bar to like the blog (not the posts!!!). I was able to add a plugin for the posts.

    Also, I would like to be able to change the font colors for the posts and the menu bar color.

    Thank you!

    Robert

Viewing 1 replies (of 1 total)
  • If you follow the functions.php carefully you will see that the rss-link is added through a filter function:

    add_action( ‘dkret_after_access_menu’, ‘dkret_rss_link’ );

    Just have a look how this functions is coded (dkret3/library/functions/custom-template-tags.php):

    function dkret_rss_link() {
    printf( ‘<span class=”access-rss access-link”>%3$s</span>’,
    get_bloginfo( ‘rss2_url’ ),
    sprintf( __( ‘RSS 2.0 feed for the posts’, ‘dkret’) ),
    sprintf( __( ‘RSS’, ‘dkret’ ) ) );
    }

    I suggest you do it the same way! Best practise is to make all your changes inside the functions.php of a dkret3 child theme:

    function my_special_links() {
    printf( ‘<span class=”access-link1 access-link’>your link‘ );
    }

    add_action( ‘dkret_after_access_menu’, ‘my_special_links’ );

    Use css to attach a background-image to your link.

Viewing 1 replies (of 1 total)
  • The topic ‘Add FB & other icons next to RSS icon in menu bar’ is closed to new replies.