I'm having a similar issue.My goal is to have a 440pix box and have
all the text that would overflow, instead wrap. The default CSS is to
force no wrapping. To fix this I've created several css definitions in
the pastable script to override google's external css.
example:
.gfg-title {
width : 440px;
overflow : normal;
text-wrap : normal;
white-space: normal;
}
However, I see now that I've included these that some part of the AJAX
script is creating some of the CSS in-line on the fly. I'm having a
hard time overriding this css that's inserted by google on the fly.
any suggestions would be appreciated.
See
http://sangstergraphicdesign.com/rss.html
Note that long text in the lower two boxes now wrap as anticipated but
any linked text in the top most box has this in-line css forcing the
line to either eilipse in chrome, but will simply hide any text after
440 in FF or IE. How do I get that top box to wrap text like the
bottom boxes?
Oh, I'm sure it's in the documentation but I haven't had a chance to
look. Is there an option argument to get it to pull more than 4 items
from each feed?
Many thanks.
On Nov 3, 2:40 pm, Jeremy Geerdes <
jrgeer...@gmail.com> wrote:
> You can override styles one of two ways: more specific CSS selectors,
> or CSS rules that have at least the same specificity but are loaded
> later in the page loading process. If you want to go for the ultimate
> control, you could load the Feeds API with the nocss option like this:
>
> google.load('feeds','1',{nocss:1});
>
> Then it won't load any of its own CSS, and you'll be free to do as you
> please.
>
> Jeremy R. Geerdes
> Effective website design & development
> Des Moines, IA
>