My blog, YoungDevs.com needs some help. As you can see the nav bar has a Twitter and RSS logo which we intend to use. I was wondering if anyone could offer some help as to the best way to go about making these work? Thanks!
You may use http://www.addtoany.com/ or something similar. It's not only twitter, but almost every popular social network. Or if you just want the rss button to work...you have to do some simple xml. It's very simple, google it and if you know html then you know how rss works
guess you use wordpress look for these line on either header.php or index.php <img src="<?php bloginfo('template_url'); ?>/images/twitter.png"> <img src="<?php bloginfo('template_url'); ?>/images/rss_subscribe.png"> PHP: change to this <a href="your twitter url"><img src="<?php bloginfo('template_url'); ?>/images/twitter.png"></a> <a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('template_url'); ?>/images/rss_subscribe.png"></a> PHP: hope that help