Hello
with these two feeds
http://www.qobuz.com/info/spip.php?page=podcast&type=rss&id_rubrique=197
and
http://www.qobuz.com/podcast/rss_classique_qobuz_mp3.xml
Brief shows a HUGE image in the header, so that I must scroll in order to see the first article. Is there a way to limit the size of the image. If not, what would be the best way to avoid showing it?
Re: Feed image too big
#feed-image {border: none;
float: right;
margin: 0 10px 10px;
}
The above is the CSS that controls images displayed in the feed title header in Brief 1.2. So modify the CSS as needed. To shut off the image display altogether:
#feed-image {display: none;
}
Remember to set important flags if you are using Brief's Style Editor. Brief by default owns all style rules, so important flags will let you override them.
Re: Feed image too big
Hi,
IMHO, default css style sheet should contains something like this to limit feed-image width and height
#feed-image {
margin: 0 0px 0px;
max-width:400px;
max-height:100px;
}
Here is a 'too big image feed':
http://feeds2.feedburner.com/PureFmreloaded
Regards