IntroductionThis article provides a tutorial on how to turn affiliate RSS feeds into a website with little or no PHP programming experience using Drupal. With Drupal, you can specify the update interval for each feed, group the feeds and use a view to manipulate the feeds out of the box. Check out the demo here.Table 1
<div class="custom_view_title"> <?php print $fields["title"]->content; ?></div><div class="custom_view_content"> <?php print $fields["description"]->content; ?></div>
.custom_view_title { background-color:#000; opacity:.7; filter: alpha(opacity = 70); border-left:1px solid #828282; border-right:1px solid #828282; border-bottom:1px solid #828282; padding: 2px;}.custom_view_content { min-height:180px; border-left:1px solid #828282; border-right:1px solid #828282; border-bottom:1px solid #828282; padding:2px;}.custom_view_content img { float:left; padding: 2px;}