Tag Archives: blogging

Your topic here!

I love using the new year as an opportunity to revamp my blog (and lots of other aspects of my life!). For example, in 2012, I devoted Mondays to marketing (I worked in Internet marketing for five years before that). In 2013, I’ve tried to stick to Mondays about the writing life (what I’ve learned as a writer), Tuesdays for the TBR pile, Wednesdays for writing craft, and goals & accountability on first Fridays, with other stuff thrown in there, of course.

But, hey, I’m not just writing this blog for me—I’m writing it for you. What topics do you want to see more of here in 2014?


Can’t see the poll? Click through to vote!

And to press my luck, do you have any feedback about the schedule/format?


Can’t see the poll? Click through to vote!

Oh, how polite! ๐Ÿ˜‰

And how do I feel about my blog? Ambivalent—and not in the “I don’t feel strongly about it/don’t actually know what ambivalent means” sense—in the “I can use a dictionary and I feel strongly about it both ways” sense. I love being able to share my thoughts. I love the idea of connecting with other writers and readers here, and yes, I’m sharing my thoughts ๐Ÿ˜‰ and I continue to get pageviews, and of course I have friends that comment here—but overall, it just doesn’t feel like my vision and my goals for this blog are coming to fruition.

I was looking back through the last couple months’ posts, and more than half of my posts in October, for example, got no comments—including the posts in a requested series. I’ve been blogging for over seven years, and comments have seriously dried up across the blogosphere, but at some point, I do begin to wonder whether the time and effort I put into blogging is worth it—especially when the thing I love most about blogging, teaching writing craft, could be done via . . . I don’t know, selling books on writing craft?

Could I do a better job promoting my blog? Absolutely. Would it help these problems? No idea. Will I ever stop blogging? Well, who knows, but apparently I can’t shut up, so I’ll probably be around for a long time. Will the blog change? Well, yes . . . just like it does every year ๐Ÿ˜‰ .

What are your blogging plans for 2014?

Blogging: Intro to HTML

This entry is part 8 of 8 in the series Marketing: blogging

Ever had a blog post do something crazy? Weird highlighting, changing fonts, double spacing? Learning even a little HTML can help you troubleshoot those crazy errors.

On Friday, I gave this presentation at the iWriteNetwork conference, and I thought it would go well with the blogging series we did a little while back, so I’m sharing it here today.

To find the HTML in your blog, above the post window, find the “HTML” button or tab. It will show you the HTML codes that present your document.

Some HTML basics

HTML stands for HyperText Markup Language.

When I want to look something up in HTML coding, I usually Google it, and click on any result from http://w3schools.com.

To “turn on” a style or feature, put it inside less than/greater than signs, like this:

<b>, <em>, <strong>

To “turn off” a style or feature, add a slash after the less than:

</b>, </em>, </strong>

Everything between those two tags (technically elements, but we’ll go with tags) will obey those tags.

A few tags are “self-closing,” and have that slash at the end, right before the greater than sign. Image tags and line breaks are two of these:

<img src="picture.jpg" /> (always use straight quotes!)
<br />

Formatting text for the Internet

Centering—there are two methods to center text. I recommend picking one and memorizing it.

<p style="text-align: center;">Centered text</p>
<p align="center">Centered text</p>

Bold—again, there are two methods; pick one

<strong>Bold text</strong>
<b>Bold text</b>

Italics—yep, two methods.

<em>Italic text</em>
<i>Italic text</i>

Styling text, from color to line spacing, is done mostly with a p element or a span element. P is for whole paragraphs, Span is for text within paragraphs.

Begins with:

<p style=" or <span style="

Must be STRAIGHT, not curly or “smart” quotes!

Inside those quotation marks, you can change all kinds of things about your text. All of the following “properties” must come INSIDE those marks, and include the semicolon. (Use just ONE of each tag.)

Color

color: red; OR color: #FE7898; [a HEX code] OR color #555;
[For HEX codes that are the same digit/letter]

Size

font-size: 14px; OR font-size: 14pt; OR font-size: 2em; OR font-size: small;

Background

background-color: yellow; OR other styles for color

Line spacing (all these are about double spaced)

line-height: 200%; OR line-height: 2; OR line-height: 25px;

Font gives several options to browsers to figure out a type of font to display

font: Georgia serif;

Once you have everything you want to change about your text, close the quotes and tag: "> (And remember </p> after the paragraph text!)

For example:

<p style="color: red; font-size: 20pt; background-color: #555;
text-align: center; line-height: 200%;">Here is my sample
paragraph. It's pretty hard to read with the gray background and
red text, so I really can't recommend using this exact color
scheme, but you get the idea.</p>

Gives us:

Here is my sample paragraph. It’s pretty hard to read with the gray background and red text, so I really can’t recommend using this exact color scheme, but you get the idea.

Outline format: headers

HTML comes with an outline format that uses headers, <h1> through <h6>.

The highest level header is for your site name. Typically, there will be only one <h1> element on a page.

<h2> elements are often used for post titles. There can be more than one <h2> on a page.

I use <h3> elements for subheadings inside my blog post. You’ll notice they’re purple here ๐Ÿ™‚ .

Images

IMG stands for image and SRC stands for source. That’s where the URL of the image itself will go. The rest of the properties are optional, but I recommend at least using the alt text, and included a search keyword, if you’re looking for a (slight) SEO benefit.

<img src="imageURL.jpg" height="80" width="60" alt="the best
dog in the whole world!" align="right" style="float: right;" />

Note that if you want the top of your image to be inline with the text, you’ll want the code for the image and the text together, without line breaks (hard returns or <br />), and the image must be right or left aligned. Like this:

<img src="imageURL.jpg" height="80" width="60" alt="the best dog
in the whole world!" align="right" style="float:
right;" />This text will line up with the TOP of the image.

Links

Links are the currency of the web! The Link anchor text is the text that shows up colored and underlined when you look at the post. Search engines use the actual anchor text as a vote, so describing your friend’s site with “click here” isn’t as helpful to their SEO as it would be to say “sci-fi author Jane Doe.”

To make a link, you use an “a” (anchor) element, with HREF (hypertext reference)

<a href="URL.html">Link anchor text</a>

You can also use “a” elements to link to a specific part of a document. For example, if I wanted to make a link to the text formatting section of this document, I would insert this HTML code just before the subheading. (“format” is the name I chose; you can use anything you like.)

<a name="format"></a>

There’s no text required—it makes any text look like a link, but it’s not clickable, so I skip it.

Then, to link directly to that part, use:

<a href="pageURL.html#format">Link anchor text</a>

These anchors also work on the same page. Here’s that link to the text formatting section on this page.

Special characters: HTML Entities

I have a few of these memorized, but I often just Google the name of the character and “html entity” if I need to find it. Include both the ampersand and the semicolon.

  • Straight apostrophe: &apos;
  • Accents, e.g. รฉ: &eacute; [the direction of the accent] OR &#233; [the alt code] — the ‘e’ is case sensitive!
  • Ampersand: &amp;
  • Straight quote: &quot;
  • Less than: <
  • Greater than: >
  • Cent: &cent;
  • Copyright: &copy;
  • Em dash: &mdash;

Two quick cut-and-paste tips

If you look at your HTML code and see that every paragraph has a line-height: 200%; property that you don’t want, I recommend cutting and pasting the code into Notepad (Text Editor on a Mac, I believe) and using Find and Replace to get rid of it.

Pasting text from an email or Word doc? I recommend pasting the text directly into the HTML window or Notepad/Text Editor. Notepad makes it easier to add line breaks between paragraphs, and find and replace any characters that won’t display properly. You will need to add bold or italic formatting manually.

Troubleshooting

Go find a crazy post on your blog and dig into the text to see if you can find out why it’s displaying oddly.

Note: If you’re trying to put two images with captions side by side in Blogger, you will need to use a table. Blogger puts the caption into a table row below the image and won’t display two tables side by side.

Don’t have a crazy post? Cut and paste this code into a new post and preview to see what’s displaying strangely. Then dig into the code to fix it!

<p style="background-color: red; text-align: right;">We use
crutches when we're lame. Gesture crutches? <strong>They're often
a symptom of writing that's limping along.</strong> Don't let your
writing limp! Make it run, jump, dance and sing!</p>
<strong>Describe the laugh</em> to make it pop. Write it fresh!
"A suuuure-you-can laugh" or "Her laughter was bright and thin
 and tinny, like the sound of cheap jingle bells you buy one
yearโ€”and the next find inexplicably silent."
Is this hard work? <strong>YES!</strong> Is it worth it? We
can&mdash;well, actually, we probably <em>can't</em> cite
<a href="http://example.com">examples of less-than-engaging
writing in published books: unless they're book-throwing bad, we
tend to gloss over this boring body language just like we do a
lot of other unstellar examples.

Can’t fix your crazy posts? I’m happy to help! Come join in the conversation!

Photo by Jesper Rรธnn-Jensen

Blog tours: Best practices for bloggers & authors

This entry is part 2 of 4 in the series Marketing: Blog tours

Blog tours offer both bloggers and authors a chance to get out there, find new books to love, find a bigger audience. I’ve participated in a few blog tours for other authors. Here are a few things I’ve learned over the years.

For bloggers

Be honest! While author-bloggers want to be loyal to fellow authors, we have to remember our blog readers are our real audience. If our blog readers go out and spend their money on a book we didn’t really enjoy but made to sound good, might that reflect poorly on us?

Be kind. To offset the above, just because you didn’t like a book doesn’t mean you should publicly rip on it. If you really, really hated it, I recommend contacting the author or blog tour coordinator first to let them know you don’t feel good about posting your feelings in public. I know of authors who’ve invited bloggers to post it anyway. You might focus on areas that you feel were strong and list other areas that needed improvement.

Link, link, link! You don’t have to list all the planned stops on the tour with links, but at the bare minimum, you should provide a clickable link to somewhere your readers can buy the book. Links to the author’s website and/or blog are awesome, too.

Remember your FTC disclosure: you received the book for free from the author/publisher, but that didn’t affect your opinion. In some cases, you might also need to disclose that it didn’t guarantee a review (such as newspapers, who receive free books to review all the time, but don’t guarantee a review just because you give them a free copy).

Make your blog post engaging! Just slapping the back cover copy on your blog only does so much to help to the author&madsh;or interest your blog readers! We’ll take a look at this in a little more depth in another week or two.

For authors

Be clear and communicative. Last week, Tristi Pinkston gave us some great advice on setting up a blog tour. Make sure you make your expectations clear from the get-go: tell the bloggers exactly what you’d like them to do. Offer gentle reminders about a week before a post is scheduled.

Be accommodating. Like Tristi said last week, provide an image of at least the book cover (an image of you would be helpful too!), as well as a clean, well-formatted copy of the back cover copy for them to cut and paste. If you can, offer your review copies in multiple formats: hardcover, Kindle, Nook, PDF, etc. And be sure to give them a direct link to somewhere their readers can purchase your book, to make things easy for them.

Cross promote, cross promote, cross promote! You do not want your blog devolving into a daily update of all the other places your book is being featured, but you definitely need to link to the reviews people are doing for you! If you have a Twitter account or a Facebook page, sharing those reviews there would be great. (Look for an awesome quote to go with the link to help draw people in.)

Recognize that not everyone will love your book. It’s just a mathematical impossibility. The purpose of a blog tour is getting your book out there in front of a wider audience, and not everyone will love everything they read. It’s not necessarily a reflection on you or your writing or even your book. So let’s put down the flamethrower, okay?

Consider whether you want to comment publicly on the blog posts. I have friends who don’t because they feel that their presence might stifle the conversation on the blog, emailing their thanks instead. Others pop by to say thank you publicly. Others engage in a dialogue (friendly, I hope!) in the comments.

Be gracious. The bloggers on your tour are doing you a favor, even if they post a negative review. Say thank you. Stay humble. Make friends.

A successful blog tour generates more than just sales. You’re building readership and creating relationships. Keep that in mind no matter which side of the book you fall on.

What do you think? What have you learned from doing blog tours, as a blogger or an author?

Photo credits: On the platform, reading—Mo Riza; Thank you sign—Avard Woolaver

Who are you blogging for? Connecting with your blog community

This entry is part 3 of 8 in the series Marketing: blogging

Just like in writing, in blogging, you need to know your audience. In writing, sometimes it’s enough to know the reader expectations within your genre. In blogging, sometimes it can be enough to know your niche.

Last week, we talked about finding that blog niche, whether you center your blog around writing, your research interests, or your hilarious life. But no matter what your topic is, it’s really important to keep in mind who you expect to read your blog.
Continue reading Who are you blogging for? Connecting with your blog community

So, seriously: should writers blog?

This entry is part 2 of 8 in the series Marketing: blogging

If you’ve been hanging around the blogosphere for a while, you’ve probably heard arguments from every side about whether writers should blog. Yes! No! Maybe!

From the Yes! camp, we hear that writers who are seeking publication should be getting their name out there through a blog. Also, a blog is a great way to connect with future readers and other writers, possibly refine your voice, write every day and build your platform. And look! It doubles as a soap box!

From the No! crowd, the arguments are more diverse. Maybe you don’t have time to write and blog, or maybe your blog voice interferes with your fiction voice.

From the Maybe! crew, the stipulations usually relate to your blog topic: you should blog about X or Y, but never about writing, politics, religion, your family, the color yellow, peanut butter . . .
Continue reading So, seriously: should writers blog?

Website Critique: Trisha (thefarseas.blogspot.com): a blog about you

We’re continuing our website critique series today with Trisha’s blog, WORD+STUFF. Hi, Trisha!

Content & Navigation
One of your strong points is your topic and content. I like that you have your blog as a place to talk about writing, but you’re free to do more than that. You’re more than just a writer, and your various topics show that.

I like how you have social media links in sidebar. You could highlight them just a touch more with a header for that section that’s a call to action—Connect with me or something similar.

However, those shouldn’t be the only way a visitor can contact you. I always advise a contact form on your website!

On your Projects page, I like the way you let us know the story behind the projects, but a little more info about the projects themselves might help to hook us better. (This may not be a big issue if you’re not pursuing publication on some of your older works.) Also, the link to the excerpts doesn’t work (you need to capitalize Excerpts in the link). If any of the excerpts correlate with the projects you list here, consider linking directly to those excerpts in the description of your book.

Design
The eclectic design seems to reflect your tastes, but you might consider something that relates a little more directly to your blog’s topic and theme—and that of your writing, if you have a genre or subject area that interests you most. I’m not clear whether the art in the background is yours. Maybe you could explain this on your about page, and talk a little about your art. Your Art page could explore this further, talking about your training, media, inspirations, etc.

Search Engine Presence
As far as your search engine presence goes . . . well, it’s really hard to say, since you don’t use your last name on your site. I understand concern for your privacy, but if you’re selling your brand (and you are your brand), it helps to actually have that on your site. You’re not Google-able without it. (I did try searching for Trisha, just in case you’re actually a super-famous one-named artist in Australia, but no luck yet.) If you’re going to use a pen name, you might think about branding that now, too.

Good luck!

What do you think? Is your blog topic broad enough?

Awesome!

I’ve just decided to participate in the A to Z April Blogging Challenge. Which is brilliant since I’ve been completely slammed by reading, revisions and real life these last two weeks. And I’m trying to launch a third blog.

I’m insane, I know.

But I definitely need to start with acknowledging the awesome Sierra Gardner. She’s part of my Crusader Group, and she’s gone to the effort to feature each of the members of our group on her blog this week. Her profile on me, which ran yesterday, makes me sound amazing! Thanks, Sierra.

I really enjoy reading Sierra’s blog. As a science grad student, she posts lots of interesting discussions on science in fiction—even if you’re not writing futuristic or science fiction. Seriously, check her out!

In other news, I got some awesome news which wasn’t an April Fools’ joke today. As soon as I can, I’ll share it with you!

Are you participating in the challenge? You ready?

Photo by Christine & David Schmitt

Should writers really blog?

Okay, so I’m sure I’m probably preaching to the choir here, but hey—it’s Christmas! What better time for preaching and choirs?

Back when I put a blog as the #7 thing an aspiring author’s website should have, several people questioned that in the comments (even though in the article I said there really just needed to be a place for news and updates).

Last week, the Romance Writers of America’s Fantasy, Futuristic and Paranormal chapter took the title question to task with guest blogger clickTaylor Lindstrom. She acknowledges that blogging can be a major draw on a writers’ creativity and often very limited time—but it can still be beneficial for any fiction writer.

She gives four good reasons that every fiction writer should have a blog.

One of the most important reasons she lists is that it gives you an author platform. Even if you don’t have a website, even if you don’t really know what you’re doing, even if you don’t get the Internet, at least trying shows that you’re willing to get out there and work for your career.

Is that necessary before you get published? Agent Kristen Nelson recently addressed this question on her blog:

an author [being published] today is definitely expected to be internet savvy, have a website, and have a sense of social media outlets and how promo is done electronically.

Naturally, however, you can find at least a few agents who don’t care whether you have a website or might even be turned off. But it seems like more and more agents put this in the plus category (if they’re already liking your query, of course ๐Ÿ˜‰ ).

What do you think? Should fiction writers blog? How much should learn about book promotion before you submit or sell (and would you like to learn more ๐Ÿ˜‰ )? (But seriously, would you?)