Blog Pile
One More Twitter Love Log For the Fire
Most people who have reached the high vistas of the Twitter Life Cycle curve have at least one, if not many small stories where they got information, a contact, a resource from twitter that they would not have gotten anywhere else. Or in such a timely fashion.
So here is one more, how I long shoot tweet in the air got me technical info I needed.
The NMC web site runs in drupal (no snark today). We use the TinyMCE module to give our users, and our office staff who create a lot of the content, a visual text editor. But I have had this nibbling problem which will likely seem nothing to a drupal-ista. I have our CSS styles include classes for hyperlinks, so that adding something like class=”pdf” to an href tag will insert a small file type icon:

It is as simple as
(See the press release)
I have a few classes for quicktime links, word docs, rss feeds, they all look something like:
.pdf {
background: url('images/pdf.gif') no-repeat;
padding-left: 14px;
}
But the problem was I would edit these in the drupal plain text editor, since I love seeing the HTML code, but if someone else in our office went to edit the content (like to fix one of my typos), when they went into the TinyMCE text editor and then saved their work, the damn class would be stripped from the source.
