views:

93

answers:

5

Hello, I want to separate the image from the text of this rss with css http://redbolivia.com/index.php?format=feed&type=rss any idea? can i do this with css?

+1  A: 

No. CSS is used for styling elements, not extracting them.

Ignacio Vazquez-Abrams
A: 

How add css to a feed that is not mine

Firstly welcome to Stack Overflow! You can go back and edit your question via the edit button. SO doesn't function as a form, but instead more like a community wiki.
Gavin Miller
Gavin Miller
Welcome to Stackoverflow! Please try to use comments or edit your original question as opposed to posting an answer if it is not an actual answer.
DrJokepu
A: 

but i put css to the title and the info... but now i want to separed the image from the text... is too close... i did this...

.rss_item_header { font-size:14px; font-weight:bold; } /* image try */ .rss_item.img { margin:7px; }

.rss_item_info
{
 color:#666;
 font-size:11px;

text-align:justify ;

A: 
img {
    margin: 5px;
    }

..Will add a margin of 5px to all sides of all the images on the page. (You stated this isn't your feed.. Why do you need to change this?)

Chesham
A: 

Because i dont want to show this feed where the images are next to the info http://redbolivia.com/index.php?format=feed&type=rss i want to put a margin to this feed, the image is too near.