Forum Moderators: coopster
I am trying to add some RSS content to my Joomla website. I can get the RSS feed to display fine but the feed has images about 700px wide and the content area of my website is only 550px; so it stretches out the page quite a bit. Without resizing my entire website, is there any way I can get the RSS feed to either remove the images through PHP or make it force the images to be smaller?
I did find an answer to my question though...in case anyone wants to know how to fix it I put the feed in a div tag and then gave it the following CSS style:
div.forcersswidth {
width: 550px;
overflow: hidden;
}