覆盖rss feed条目的图像大小

时间:2014-05-24 23:34:48

标签: html css html5 css3 rss

图片随rss Feed而来,我如何强制以自定义尺寸显示图片?

<div id="entry_id=1" class="feed_entry read_entry">
  <h3>
    <p class="feedreader_subtitle">
      <p></p>
    <div class="field field-teaser">
      <p>Description text here</p>
    </div>
    <div class="field field-main-imd">
      <a class="imagecache imagecache-s imagecache-linked imagecache-s_linked" href="http://www.wiatrak.nl/32720/droga-sw-jakuba-do-santiago-de-compostela-ii">
    <img class="imagecache imagecache-s" width="115" height="115" title="Sw. Jakub" src="http://url_to_image_com/sites/default/files/imagecache/s/images/story/2014/02/12/swjakub00.jpg" alt="Sw. Jakub">
      </a>
    </div>
      <p></p>
</div>

以下内容无效

 img {width:100px; float:left; border:0; margin-top:5px; margin-bottom:5px; margin-left:7px; margin-right:7px;}

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

你在做什么应该可以正常工作 - http://jsfiddle.net/nitishdhar/yB92P/

在img标签中还定义了一些类,你是否正在使用其他CSS文件,它们可能有图像大小的定义。确保尝试使用更具体的选择器来覆盖尺寸eg-

img.imagecache.imagecache-s {
  width: 50px;
  height: 50px;
}

http://jsfiddle.net/nitishdhar/yB92P/1/