Forum Moderators: coopster

Message Too Old, No Replies

PHP/CSS/RSS question.

         

camaroboy

12:26 am on Sep 21, 2007 (gmt 0)

10+ Year Member



I'm not really sure what category this questions should be in be here goes...

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?

dreamcatcher

7:30 am on Sep 21, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Silly question, but can`t you use smaller images?

dc

camaroboy

4:28 pm on Sep 21, 2007 (gmt 0)

10+ Year Member



I cant use smaller images because the RSS feed I am trying to syndicate in my content is from a different source and I have no control over the images they put in their feed.

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;
}