Main Menu
collapse

Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

User Info

Welcome Guest.
Please log in.

Who's Online

  • Dot Guests: 1197
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]


Welcome to SimplePortal.net! You can download SimplePortal from the Downloads Area!

Multiple Rss feeds in a single block.

Started by worm82075, March 20, 2011, 12:16:28 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

worm82075

First off let me make it clear that I am willing to pay for this code if necessary.

What I need is to display multiple rss feeds in a row /column format like bbc's post tables.

Have a look at my site. http://thewormhole.nfshost.com/forum/index.php

See the rss feed blocks on the lower right of the portal? I want to display those in columns in a single block in the center of the portal like i have done with BBC tables and the list of links.

Really all i need is an rss feed bbcode but I think some custom PHP or Html is much less to ask for.

Like i said I'd be willing to pay for the code. Thanks.

Edit: Oh, i forgot to mention i'm running SMF 1.1.11 and SP 2.3.1.

Lineman

#1
I don't know if this will help, but I did put multiple RSS feeds in a table; in rows.  I used this source to generate a script for the feeds; http://www.rss-to-javascript.com/p/RSSRDF-Converter___138.html

Then I put the code within the row(s) of the table:
<table width="100%" border="1" bordercolor="#333333" align="center" cellpadding="10" cellspacing="0" background="PATH TO BACKGROUND IMAGE WITHIN TABLE">
  <tr>
    <td><div style="overflow:auto;height:300px;">RSS to JAVA CODE INSERT HERE</div></td>
  </tr>
  <tr>
    <td><div style="overflow:auto;height:300px;">RSS to JAVA CODE INSERT HERE</div></td>
  </tr>
  <tr>
    <td><div style="overflow:auto;height:300px;">RSS to JAVA CODE INSERT HERE</div></td>
  </tr>
  <tr>
    <td><div style="overflow:auto;height:300px;">RSS to JAVA CODE INSERT HERE</div></td>
  </tr>
  <tr>
    <td><div style="overflow:auto;height:300px;">RSS to JAVA CODE INSERT HERE</div></td>
  </tr>
  <tr>
    <td><div style="overflow:auto;height:400px;">RSS to JAVA CODE INSERT HERE</div></td>
  </tr>
</table>


I also used the <div style="overflow:auto;height:400px;"RSS TO JAVA CODE INSERT HERE </div>
So, I have 6 RSS feeds in one custom html block.  With vertical sliders for each feed.  It works well for me.
:)



worm82075

#2
can i have a look at your site?

Edit: I would like to avoid using any scripts that aren't on my server.

Lineman

Sure; http://godschatroom.com  The block is displayed on the front page.

worm82075

Ok I got this one sorted on  my own using the following:

RSS Display Boxes
by Dynamic Drive

They have a php driven rss parser that uses javascripts placed on your own server and outputs in html using html so all your RSS data is searchable.

Lineman