Welcome To CT

My Left Nutmeg

A community-driven blog featuring news and commentary on local, state, and national politics.

helphaiti

Donate to CT Dems
Enable ActBlue
for CT Races
$
John Larson
(1st CD)
$
Joe Courtney
(2nd CD)
$
Rosa DeLauro
(3rd CD)
$
Jim Himes
(4th CD)
$
Chris Murphy
(5th CD)
$
Ads on My Left Nutmeg
 
 


 
Contact Info
To contact the site admin email ctblogger at ctblogger@yahoo.com

My Left Nutmeg

MLN posting tools

by: Missy's Brother

Thu Mar 08, 2007 at 16:34:04 PM EST


I don't have any but would really like for you to help us older types. How do you post a picture? How do you put quotes from articles in the square block? How do you post a video? How do you make a word BOLD? What are all these tricks as I can do it in an email but not here.

I would really like to see some type of permanent link on the front page that shows everyone and especially new people on how to use tools for enhancing their posts. I know that I am not the only one here that could use some guidance. Some may say if I don't know how then I shouldn't be here but I hope you disagree. Maybe we can even test out our new acquired skills in this thread.

Missy's Brother :: MLN posting tools
Tags: , , , , , , , (All Tags)
Print Friendly View Send As Email
MLN posting tools | 41 comments
Okay, I'll start (4.00 / 3)
You might find some good resources over at the dKosopedia, since DailyKos is built on a souped-up version of the same software that MLN is using.

Adding pictures to your posts is a two step process because MLN (like most blogs) does not host images.  You have to upload an image to a service like Flickr or ImageShack and then use HTML to have your images appear in your diary.

There's a good summary here at dKosopedia about how to use images in your posts and comments.

The same holds true, essentially, for video -- you have to either upload video to a service like YouTube (or find video there) and then "point to it" in your post using HTML.

HTML basics are very easy to learn. If you used word processors back in the '80's, the "codes" you used to create bold and italic in printouts, which you couldn't see on the screen before WYSIWYG monitors, were just like HTML codes.

To format any text using HTML, you enclose that text in "tags" or codes.  A tag is always preceded by its tagname enclosed in <brackets>, then the text you wish to format, then a closing tag, which is the same as the tagname but preceded by a forward slash "/", also enclosed in brackets.  Like this:

  • underline is made by <u>your text here</u>
  • bold is made by <b>your text here</b>
  • bold is made by <i>your text here</i>

You can test it in comments below.  Try bolding, underlining, and italicizing a word.  Use "preview" to check to see if the word is formatted correctly before you hit submit.

If you're quoting lots of text from another article and you want it set off in the indented grey blockquote box, you use the blockquote tag just like the bold, italic, and underline tags.  To create this effect, you type

<blockquote>some text</blockquote>

Try it to see if it works!

And don't forget to close your tags (that is, include the ending tag with the forward slash) or everything aferward will be formatted that way.  Hope this is helpful!

 


Woops...preview is my friend (4.00 / 3)
Obviously, I could take a good dose of my own advice to preview a comment before submitting it!

The last item in that bulleted list is supposed to be for italic, not bold.  Use "i" for the italic tag.


[ Parent ]
Thank you Maura! (4.00 / 1)
Thank You Maura


[ Parent ]
Hot damn (0.00 / 0)
You can teach an old dog new tricks. I am proud of the above! :)

[ Parent ]
All right!!!! (0.00 / 0)
Now you're off and running!  :-)

[ Parent ]
What magic is this? (0.00 / 0)
I'd like to know how you typed (blockquote)some text(/blockquote) without blockquoting it? I'm using (parentheses) in place of the here.

The arc of history is long, but it bends toward justice. --Martin Luther King, Jr.

[ Parent ]
See those damn brackets (0.00 / 0)
made my (bracket) disappear.

The arc of history is long, but it bends toward justice. --Martin Luther King, Jr.

[ Parent ]
ASCII entities (4.00 / 2)
to get

< brackets >

you would type

&lt; brackets &gt;

You can also – if you desire it – get nicer hyphens, or long hyphens called em dashes — if you're feeling bold :)

– &ndash;
— &mdash;

–7.25 / –7.28 | http://imgs.xkcd.com/comics/tw...


[ Parent ]
Unordered List (Bullet Points) (4.00 / 2)
Since Maura used fancy schmancy HTML to make a bullet point list, but didn't share her elite knowledge, I'll do it:

<ul> (this is the tag you use to indicate that you are starting the list)
<li> (this is the tag you use to indicate a list item)
</li> (this is the tag you use to indicate the end of a single list item)
</ul> (this is the tag you use to indicate the end of the list)

So each item in Maura's list above is preceded by <li> and succeeded by </li>

Here are the tags, in order:

  • <ul> to start the list

  • <li> to start a list item and this next tag to end it </li>

  • <li> to start a list item and this next tag to end it </li>

  • <li> to start a list item and this next tag to end it </li>

  • <li> to start a list item and this next tag to end it </li>

  • </ul> to end your list


|Spazeboy.net|Spazeboy's Guide to Political Videoblogging|

[ Parent ]
If you want a numbered list (4.00 / 3)
  1. You should do the same as above,

  2. only use <ol> and </ol>

  3. instead of <ul> and </ul>
    • (this stands...
    • for "ordered list")


–7.25 / –7.28 | http://imgs.xkcd.com/comics/tw...

[ Parent ]
Besides "scratching that progressive itch"... (4.00 / 2)
I am learning HTML by frequenting this site. Beginning with Scarce's instruction with blockquotes, I learned other nifty tricks with HTML thanks to someone posting this pagesite:

Basic HTML commands

Someone in MLN posted this site before, but I forgot who.

If you want to post an image, that is a little trickier. But, check out this page site:

Introduction to HTML: Pictures

The tricky part is getting the right .jpg or .gif filename. I discovered it by accident (or by trial and error). When you see a picture on the internet, right click on the pic and then click on 'properties'. The address that shows up on the grey box will be the full filename you want to insert into between the " ".

I don't know how to upload YouTube videos, yet. And I don't know how to upload pictures directly from my hard drive, also. But, you can upload your pics into an internet site and use that site's filename .jpg (or .gif) for your 'img src'

The arc of history is long, but it bends toward justice. --Martin Luther King, Jr.


You Tube Provides The Link (4.00 / 1)
I went to You Tube, found this video, and next to it was the link - I just cut and pasted it here:



[ Parent ]
Thank you (0.00 / 0)
you learn something new everyday.

The arc of history is long, but it bends toward justice. --Martin Luther King, Jr.

[ Parent ]
I See Mac People (0.00 / 0)
If you're a Mac person like me, and you're running OS X 10.4.x (Tiger), you can get a Dashboard Widget that gives you a reference for all the HTML special characters (and I'm sure this isn't the only such Widget available).

BTW, in the course of posting in another thread, I just discovered that HTML codes do work in subject lines, even though they don't appear to be working when you look at a preview. (Or is that just a hiccup in my browser?)


[ Parent ]
Missed It by <i>That Much!</i> (0.00 / 0)
I just discovered that HTML codes do work in subject lines, even though they don't appear to be working when you look at a preview.

Actually, I'm now seeing the actual codes (rather than the styles they're supposed to invoke) in the "Recent Comments" sidebar, and when the comment is at the top of the page, but when it appears sub to another post in a thread, the codes seem to work. I'm using Firefox 2.0 under Mac OS X 10.4.8 on a  new (i.e., Intel) iMac. Are people with other computers/OSs/browsers seeing the same thing I am? Enquiring minds want to know!


[ Parent ]
This is the ultimate guide to HTML (IMHO) (4.00 / 1)
HTML Goodies

They cover everything from the most basic HTML code to the latest trend setting stuff as it becomes available. When I am unsure how something is done, they almost always have it up there.

It is awesome for anyone that wants to learn it all from the begining. BUT even the most advanced users/bloggers can learn tricks there. :)


Drinking Liberally in New Milford
ePluribus Media


[ Parent ]
HTML for Links (4.00 / 2)
Here's the pagesite if you want to link stuff to what ever word, phrase, sentence, etc. you type.

The arc of history is long, but it bends toward justice. --Martin Luther King, Jr.

you want (4.00 / 1)

<img src="http://38.99.77.125/img407/2008/jakecleocarridefs5.th.png">

don't forget the space before SRC and the quotation marks!

–7.25 / –7.28 | http://imgs.xkcd.com/comics/tw...


[ Parent ]
Quick and dirty HTML methods (0.00 / 0)
When I'm posting on My Left Nutmeg or MyDD I usually compose the diary on Daily Kos and then cut and paste it into a new diary on MLN or MyDD. Then delete the Daily Kos diary unpublished.

By George, he's got it! (4.00 / 1)
:-)

The arc of history is long, but it bends toward justice. --Martin Luther King, Jr.

[ Parent ]
Woo hoo!!! You did it! (0.00 / 0)


[ Parent ]
Lesson No.2 (0.00 / 0)
Thank you very much everyone for all of your help. I can now accomplish the four things that I had originally asked about. (as long as I keep referring back to this thread) I believe the only thing left that I have a question about is this: how do you place a link in your posting but reword the link to say something else? Thanks in advance. 

You can make anything a link... (4.00 / 1)
like this:
<a href="web address">your alternate text</a>

An example:

Missy's Brother's Profile

<a href="http://www.myleftnutmeg.com/userDiary.do?personId=417">Missy's Brother's Profile</a>

Make sure you include the http:// if it's to another website: if you don't include that, web browsers will assume that the link is to another file on the same site. For example,

Buy a book at amazon

<a href="www.amazon.com">Buy a book at amazon</a>

Will try to bring you to the address http://www.myleftnutmeg.com/www.amazon.com, which won't work.

–7.25 / –7.28 | http://imgs.xkcd.com/comics/tw...


[ Parent ]
You and Maura (and other FP'ers?) (0.00 / 0)
are obviously more adroit with HTML, because you guys can display whatever text you want without HTML interpreting it as such. Someday, I'll explore your ASCII entities.

The arc of history is long, but it bends toward justice. --Martin Luther King, Jr.

[ Parent ]
codes (0.00 / 0)
You just need a less than sign to open your tags:

< &lt;

And a slash to disable http links:

/ &#47;

–7.25 / –7.28 | http://imgs.xkcd.com/comics/tw...


[ Parent ]
Amazon (0.00 / 0)
Don't forget though that Liberals are now boycotting Amazon because they are the last major corporation that refuses to take their ads off of Ann Coulter's website.

[ Parent ]
Finally an answer I know. (4.00 / 1)
Okay, Missy's Brother, this works for me and was passed on I think by Sufi:

The order is, code defining the hyperlink, define the text you want to highlight in place of the hyperlink.

To make sure the coding appears, I am going to deliberately write out symbols.  You should use the actual symbol, such as quote, okay?

Once you write out the coding, copy it into a word document or something as an example for the future.  (You can't look at the post again as code, but you can open a diary you wrote and review the code in future).

coding is:
bracket a space href equal signquote
HYPERLINKendquoteforward slash>TEXT YOU WANT TO SUBSTITUTE FOR LINKbracketforward slasha>

a space href means: a href
Bracket means <; quote means "; forward slash means /;

Okay, I will follow my directions to see if this works.
Colony Collapse Disorder - It's the environment, stupid


I've turned into a pillar of salt. :-) n/t (4.00 / 1)


The arc of history is long, but it bends toward justice. --Martin Luther King, Jr.

[ Parent ]
How do you show a link (0.00 / 0)
without showing the whole URL, just showing your words?

Thanks for the info, it's really useful!


Never mind! (0.00 / 0)
It was posted since the last time I looked....

[ Parent ]
HTML Goodies (0.00 / 0)
The ultimate guide to HTML for newbies to the most advanced users:

HTML Goddies

They are kindof an HTML encyclopedia. heh


Drinking Liberally in New Milford
ePluribus Media


MLN posting tools | 41 comments
 
1 user(s) logged on.
Menu

Make a New Account

Username:

Password:



Forget your username or password?


Spotlight

Use the Spotlight tool to send a diary to offline journalists, with your feedback or suggestions.
(What is Spotlight?)


Search


   Advanced
My Left Nutmeg Feeds

Links


Connecticut's War Dead

Blogroll
Powered By
- SoapBlox

Connecticut Blogs
- Capitol Watch
- Colin McEnroe
- Connecticut2.com
- Connecticut Bob
- ConnecticutBlog
- CT Blue Blog
- CT Energy Blog
- CT Local Politics
- CT News Junkie
- CT Smart Growth
- CT Voices for Civil Justice
- CT Voters Count
- CT Weblogs
- CT Working Families Party
- CT Young Dems
- Cool Justice Report
- Democracy for CT
- Drinking Liberally (New Milford)
- East Haven Politics
- Emboldened
- Hat City Blog (Danbury)
- The Laurel
- LieberWatch
- NB Politicus (New Britain)
- New Haven Independent
- Nutmeg Grater
- Only In Bridgeport
- Political Capitol (Brian Lockhart)
- A Public Defender
- Rep. David McCluskey
- Rep. Tim O'Brien
- State Sen. Gary Lebeau
- Saramerica
- Stamford Talk
- Spazeboy
- The 40 Year Plan
- The Trough (Ted Mann: New London Day)
- Undercurrents (Hartford IMC)
- Wesleying
- Yale Democrats

CT Sites
- Clean Up CT
- CT Citizen Action Group
- CT Democratic Party
- CT For Lieberman Party
- CT General Assembly
- CT Secretary of State
- CT-N (Connecticut Network)
- Healthcare4every1.org
- Judith Blei Government Relations
- Love Makes A Family CT

CT Candidates
- Chris Murphy for Senate
- Susan Bysiewicz for Senate

- William Tong for Senate


Other State Blogs
- Alabama
- Arizona
- California
- Colorado
- Delaware
- Florida
- Georgia
- Idaho
- Illinois
- Indiana
- Iowa
- Kentucky
- Louisiana
- Maine
- Maryland
- Massachusetts
- Michigan
- Minnesota
- Missouri
- Missouri
- Montana
- Nebraska
- Nevada
- New Hampshire
- New Jersey
- New Mexico
- New York
- New York
- North Carolina
- Ohio
- Ohio
- Oklahoma
- Oregon
- Pennsylvania
- Rhode Island
- South Dakota
- Tennessee
- Texas
- Texas
- Utah
- Vermont
- Virginia
- Washington
- West Virginia
- Wisconsin



More blogs about connecticut+politics.
Technorati Blog Finder


 
Powered By
MLN is powered by SoapBlox
 
Powered by: SoapBlox