If answer on those question is positive, you should read this article. Final result will look similar to sample on picture.
- Go on CustomRSS web page
- Adjust gadget settings
- Copy and paste code on your blog or site
CustomRSS is one of google gadgets. Highly customizable RSS reader to spice up your page with color and functionality. Tons of options! Capable of showing inline pictures and HTML formatting.
Most important is to enter FEED URL. In my case this URL was : http://interestingwebs.blogspot.com/feeds/posts/default/-/webs
Of course, you will enter your feed url.
You can choose Gadget Title Link, colors, fonts, link actions, number of items...
Every change you make you see in preview pane.
For colors you must use hexadecimal color codes. Safe Hexadecimal Color Codes will help you with colors.
When you are satisfied with your work you can click button "Get Code"
Final step is to paste code from CustomRSS web on your site.
For blogspot bloggers:
You can paste code in HTML/Javascript gadget. For details see How to add HTML or JavaScript gadget to blog (blogger).
For advanced users:
Advanced user might load more Custom RSS readers in separate div tags. Hide divs and show them with javascript clicks (see article about hiding and showing HTML elements). With this you can see different category lists without reloading page.
Code for advanced users:
<ul style="FONT-SIZE: x-small">
<li><a id="Category1" href="javascript:;" onclick="javascript:hideAllCategories();showCategory('RSS1')">Blog tutorial</a>
<li><a id="Category2" href="javascript:;" onclick="javascript:hideAllCategories();showCategory('RSS2')">Useful webs</a>
</li></li></ul>
<script type="text/JavaScript">
<!--
function showCategory(id)
{
if (document.getElementById(id).style.display == 'none')
{
document.getElementById(id).style.display = '';
}
}
//-->
<!--
function hideCategory(id)
{
document.getElementById(id).style.display = 'none';
}
//-->
<!--
function hideAllCategories()
{
document.getElementById('RSS1').style.display = 'none';
document.getElementById('RSS2').style.display = 'none';
document.getElementById('RSS3').style.display = 'none';
document.getElementById('RSS4').style.display = 'none';
}
//-->
</script>
<div id="RSS1">
<script src="http://www.gmodules.com/ig/ifr?url=http://customrss.googlepages.com/customrss.xml&up_rssurl=http%3A%2F%2Finterestingwebs.blogspot.com%2Ffeeds%2Fposts%2Fdefault%2F-%2Fblog-tutorial&up_title=CustomRSS&up_titleurl=http%3A%2F%2Finterestingwebs.blogspot.com%2Ffeeds%2Fposts%2Fdefault%2F-%2Fblog-tutorial&up_num_entries=30&up_linkaction=openlink&up_background=669966&up_border=CFC58E&up_round=1&up_fontfamily=Arial&up_fontsize=8pt&up_openfontsize=9pt&up_itempadding=3px&up_bullet=arrows&up_custicon=Overrides%20favicon.ico&up_boxicon=0&up_opacity=20&up_itemlinkcolor=FFFFFF&up_itemlinkweight=Bold&up_itemlinkdecoration=Underline&up_vlinkcolor=000000&up_vlinkweight=Bold&up_vlinkdecoration=Underline&up_showdate=1&up_datecolor=9F9F9F&up_tcolor=1C57A9&up_thighlight=FFF19D&up_desclinkcolor=1B5790&up_color=000000&up_dback=FFFFFF&up_dborder=DFCE6F&up_desclinkweight=Bold&up_desclinkdecoration=Underline&synd=open&w=200&h=250&title=Blog tutorial&border=%23ffffff%7C0px%2C1px solid %23595959%7C0px%2C1px solid %23797979%7C0px%2C2px solid %23898989&output=js"></script>
</div>
<div id="RSS2" style="DISPLAY: none">
<script src="http://www.gmodules.com/ig/ifr?url=http://customrss.googlepages.com/customrss.xml&up_rssurl=http%3A%2F%2Finterestingwebs.blogspot.com%2Ffeeds%2Fposts%2Fdefault%2F-%2Fwebs&up_title=CustomRSS&up_titleurl=http%3A%2F%2Finterestingwebs.blogspot.com%2Ffeeds%2Fposts%2Fdefault%2F-%2Fwebs&up_num_entries=30&up_linkaction=openlink&up_background=669966&up_border=CFC58E&up_round=1&up_fontfamily=Arial&up_fontsize=8pt&up_openfontsize=9pt&up_itempadding=3px&up_bullet=arrows&up_custicon=Overrides%20favicon.ico&up_boxicon=0&up_opacity=20&up_itemlinkcolor=FFFFFF&up_itemlinkweight=Bold&up_itemlinkdecoration=Underline&up_vlinkcolor=000000&up_vlinkweight=Bold&up_vlinkdecoration=Underline&up_showdate=1&up_datecolor=9F9F9F&up_tcolor=1C57A9&up_thighlight=FFF19D&up_desclinkcolor=1B5790&up_color=000000&up_dback=E1E9C3&up_dborder=DFCE6F&up_desclinkweight=Bold&up_desclinkdecoration=None&synd=open&w=200&h=100&title=Interesting webs&border=%23ffffff%7C0px%2C1px solid %23595959%7C0px%2C1px solid %23797979%7C0px%2C2px solid %23898989&output=js"></script>
</div>
No comments:
Post a Comment