Thank you tino.
I'm testing it now with a couple of ebay rss feeds, but having real trouble getting it to look right. Needs some space to separate the panels. And the rss_date I can't position to the left without distorting things. Might just be these feeds controlling the layout, and me not being able to override them.
This is the feeds I was playing with.
global $context;
echo '<style type="text/css">
/*Date item added to ebay*/
.rss_date {
color : white;
}
.rss-feed-right img {
width: 45%;
}
.rss-feed-left img {
width: 45%;
}
.rss-feed-right {
color : white;
float: right;
width: 50%;
height: 100%;
}
.rss-feed-left {
color : white;
float: left;
width: 50%;
height: 100%;
}
@media only screen and (max-width: 640px) {
.rss-feed-left
{
float: none;
display: table-row-group;
}
.rss-feed-right
{
float: none;
display: table-footer-group;
}
}
</style>';
$context['TPortal']['rss_notitles'] = false;
$context['TPortal']['rssmaxshown'] = 10;
echo '<div style="padding: 10px; display:table;">';
echo '<div class="rss-feed-left">';
TPparseRSS('https://www.ebay.co.uk/sch/i.html?_from=R40&_nkw=Electric+guitar&_sacat=0&LH_BIN=1&LH_ItemCondition=1000&LH_PrefLoc=1&_rss=1');
echo '</div>';
echo '<div class="rss-feed-right">';
TPparseRSS('https://www.ebay.co.uk/sch/i.html?_osacat=29518&_odkw=chainsaw+parts+accessories&_from=R40&_trksid=p2334524.m570.l2632.R2.TR12.TRC2.A0.H3.Xdash.TRS0&_nkw=dash+cam&_sacat=3270&_rss=1');
echo '</div>';
echo '</div>';