How to Create a Progress Bar

I remember the first time I encountered a progress bar on a writer’s website. I thought, “Oh, cool!”

sample progress barI’m visually oriented, so that visual representation of the writer’s progress on his or her current work gave me a much better feel for how near (or far away) the point of completion stood.

I wondered if I would ever add a progress bar to my website, but not seriously, more as a piece of fiction about myself. 😀

Most writers didn’t (and don’t) have such bars on their websites, but every now and then I would see another. I assumed there was a “widget” or a plug-in that produced the bar, but I didn’t think about it too hard.

And then I realized last April that I wanted a progress bar for my work in progress.

I thought about searching among the WordPress plug-ins for one that creates a progress bar, but…

I feel a little embarrassed to admit it, but I’ve forgotten how one does this! The last time I was mucking about with plug-ins was when I set up this website in February 2012, more than 4 years ago. I remember none of the details. I’m sure I could figure it out again. At some point, I’ll probably have to. There will be something I decide I want for my site that cannot be done in any other way.

But I decided to try Google first for the progress bar.

Almost immediately, the results turned up someone’s blog post with the HTML code that would do the job. It seemed very straight forward, so I dove in.

The blogger’s example progress bar was orange on black, and the code looked like –

Before I show you, let me say, “Don’t panic!” I’m going to explain each piece. And the HTML is quite a short string. 😀
 
 

The HTML

<div id=”progressbar” style=”background-color:#000000;
border-radius:6px;padding:3px;”>
<div style=”background-color:#f96604;width:75%;height:10px;
border-radius:4px;”>
</div></div>

This is the visual that the HTML produces:

 
Now, you’ll notice that this black and orange bar is a lot longer than the blue bar in my sidebar. That’s because the HTML code does not specify the length, so it simply extends to the edges of the text window.

The text window for the blog post is much wider than the text window for the sidebar, so we get a longer bar.

I don’t like the l-o-n-g progress bar, so if I had been planning to use it in a blog post pinned to the top of my blog, I would have searched for a way to control the length of the progress bar. Because I was planning on putting it in the sidebar, I didn’t need that. So I didn’t go searching. 😀

Now, let’s look at the different pieces of that HTML string.
 
 

Two Pieces of HTML

It is basically two pieces. The beginning of the first piece is <div. The beginning of the second piece is indicated by that same little bit: <div.

In HTML, every piece has to have the beginning indicated and the end indicated.

So the end of each of these pieces is indicated as </div>

Here’s the code with those beginnings and endings highlighted.

<div id=”progressbar” style=”background-color:#000000;
border-radius:6px;padding:3px;”>
<div style=”background-color:#f96604;width:75%;height:10px;
border-radius:4px;”>
</div></div>

So what about those two pieces? What’s in them?
 
 

THE FIRST PIECE

This is the first piece:

<div id=”progressbar” style=”background-color:#000000;
border-radius:6px;padding:3px;”>

The first piece gives the black background for the progress bar.

Now I am notnot – well versed in using HTML. I’ve picked up what I need to know by looking at the HTML windows of my blog posts. And that’s it. I’ve never taken a class. I’ve never even read a book on the subject!

Which means I won’t be able to explain the way a more informed HTML-user would. But I can explain enough so that you should be able to get your own progress bar in your own sidebar to look the way you want it to.
 
 

The Identifier

So, in the first piece, the id=”progressbar” is probably simply an identifier, telling the computer, “Hey! This piece here is the progress bar.” Or, it might also tell the computer something about the basic shape of the element – long and thin and straight.

Those of you who do understand HTML are probably laughing right now and thinking, “Does she really think that? Could anybody possibly be so ignorant?”

Well, yes. Someone could, and I am. But, never mind. 😀
 
 

The Color

Next comes style=”background-color:#000000;

Now I do know what this does. It controls the color of the the background of the bar. #000000 is black.

Next bit, please!
 
 

The Shape of the Corners

border-radius:6px;

This controls the corners of the bar. My bar has rounded corners. But if you wanted square corners, you get them by changing 6px (6 pixels) to 0px (0 pixels).

Let’s see what that looks like.

 
Here it is with 3 pixel corners.

 
And with 6 pixel corners:

 
 
 

The Thickness

padding:3px; controls how much of the background shows around the edges of the ever-changing orange part of the progress bar. Change that 3px (3 pixels) to 0px (0 pixels) and the border goes away altogether.

 
Change the 3px to 6px (6 pixels), and the border gets very thick.

 
I like the 3 pixel border.

 

That’s the whole of the first piece.
 
 

A List of the Code

Indicator of the beginning <div
Identifier id=”progressbar”
Background color style=”background-color:#000000;
Corner shape border-radius:6px;
Border thickness padding:3px;
The end of the beginning (a greater-than sign) >

A space separates the beginning indicator <div and the identifier id=”progressbar”

Semi-colons ; separate the three pieces of the “style”: color, corner shape, and border thickness.

And a greater-than sign > caps off the whole description.

I always reproduce those separators exactly! If you accidentally omit one, the HTML won’t work the way it is supposed to, and the image on your website won’t be what you intend.

<div id=”progressbar” style=”background-color:#000000;
border-radius:6px;padding:3px;”>

There’s the first piece as a whole.
 
 

THE SECOND PIECE

Now let’s look at the second piece.

The second piece is the ever-changing orange that grows longer as you write more words or shorter when you cut a few out.

<div style=”background-color:#f96604;width:75%;height:10px;
border-radius:4px;”>

<div indicates the beginning. Or more accurately, the beginning of the beginning!
 
 

Color, Take 2

Next!

style=”background-color:#f96604;

That’s the color. #f96604 is orange.

And next!
 
 

The Width

width:75%;

Ah! That’s the bit that controls how much of the black background is covered by the orange. Each time I updated my progress bar, I had to do a bit of math.

When I first put up the bar, I’d written 4,000 words. And I estimated that the book would be 160,000 words long.

4,000 ÷ 160,000 = .025

.025 x 100 = 2.5%

So, instead of width:75%; I needed width:2.5%;

 
It was exciting when I changed that width:2.5%; to width:5%; at the end of the week!

 
 
 

The Height

Next bit!

height:10px;

It controls how thick the overall progress bar is. If you change height:10px; to height:4px;, it gets very thin.

 

If you change height:10px; to height:20px;, it gets very thick.

 

I like height:10px; (10 pixels) best.

 
 
 

The Shape of the Corners, Take 2

Next bit!

border-radius:4px;

This controls the shape of the corners of the orange bar.

Change border-radius:4px; to border-radius:0px; and the corners become square.

 
Let’s try border-radius:3px;

 

Hmm. I think I like 3 pixels better than 4 pixels. I didn’t tinker this much with the code when I was setting up my own progress bar. I’m going to try 3 pixels when I finish writing this blog post. 😀

And that was the last bit of the second piece.
 
 

A List of the Code, Take 2

Here are all the bits that make up the second piece.

Indicator of the beginning of the second piece <div
Background color style=”background-color:#f96604;
Width width:75%;
Corner shape border-radius:4px;
The end of the beginning of the second piece (a greater-than sign) >

However, it’s not quite the end of the HTML code.
 
 

Putting It All Together

We have the first piece.

<div id=”progressbar” style=”background-color:#000000;
border-radius:6px;padding:3px;”>

We have the second piece.

<div style=”background-color:#f96604;width:75%;height:10px;
border-radius:4px;”>

But each of those only just describes the start of each piece. We must also tell the computer, “Okay, that’s enough. End it here.

And each piece needs its very own “End it here.” They can’t and won’t share! 😀

</div></div>

That gives us the whole thing, if we’re okay with orange on black. I wasn’t.

I wanted something that would blend better with the other colors on my website. I liked the idea of dark blue on pale blue. Since #000000 was black, and #f96604 was orange, what numbers would yield the blues that I wanted?
 
 

CONTROLLING THE COLORS

I did some searching and discovered that the whole rainbow of web colors is described by numbers called “color hex codes.” Each is composed of a combination of letters and numbers, six of them. And there are web sites were you can match up the color and the number.

I googled and found one of these sites: http://www.color-hex.com/.

Navigation bar for color-hex.com
 
 

The Color Picker

The top navigation bar at http://www.color-hex.com has something labeled “get info.” I clicked the triangle next to that label, and a color picker appeared.

color picker at color-hex.com
 
 

Choosing a Pale Blue

I clicked around on it until I arrived at a light blue that looked good. The hex code for it #dff0fd appeared in the little info box. I copied it and pasted it into the HTML piece that controlled the background of my own progress bar.

Light blue on the color picker

<div id=”progressbar” style=”background-color:#dff0fd;
border-radius:6px;padding:3px;”>

 

The orange on the light blue background does not look good to my eye! Of course, we’re only halfway to what I want.
 
 

Choosing a Darker Blue

I clicked around on the color picker some more, until I arrived at a darker blue that looked good. Then I copied and pasted that number #1b8be0 into the HTML piece that controlled the “orange” part of my progress bar.

Dark blue on the color picker

<div style=”background-color::#f96604;width:75%;height:10px;
border-radius:4px;”>

 
 

YIPPEE!

I finished the first draft of my WIP and sent it off to my first reader this week!

I feel a little lost. It’s time to start work on the cover – and I’ve been searching for the right images for it – but I’m already missing the writing.

I think I’m going to treat myself to writing the short story that’s tugging at my inner artist while I work on the cover.

Let’s see that progress bar with 100%.

140,712 of 140,712 words

And there you have it! More than you ever wanted to know about HTML and progress bars! 😀
 
 

HTML to Copy and Paste

On the chance that you want a blue-on-blue progress bar for your website, here’s the complete HTML. Feel free to copy and paste. Remember to change the 75% to the percentage for your WIP!

<div id="progressbar" style="background-color:#dff0fd;
border-radius:6px; padding:3px;">
<div style="background-color:#1b8be0; width:75%; height:10px;
border-radius:4px;">
</div></div>

For more about blogging:
Why I Wanted a Progress Bar
Why Create a Site Map?
Slow Blogging and Other Variations
SPAM Deluge

 

Share

Copyright Statement for My Website

United States ConstitutionFrom the moment I click the “publish” button, the posts and pages on this website are protected by copyright law. Which means that limited excerpts of the contents may be quoted by others under the fair use doctrine. But any more extensive reproduction of my words, and any use at all of my photos or drawings, may only occur when my permission is sought and granted.

However, many blog owners put a copyright statement on their websites. It serves as a reminder that the content of the site does belong to the site owner, a fact that is sometimes forgotten online.

The crafting of a copyright statement has been on my to-do list for quite some time. Today, I finally tackled the task.

Many sites have only the most basic of statements.

Copyright © Siteowner.

There were two reasons that would not not work for me.

The most obvious one is that my site contains some content that does not belong to me. I love old paintings and old book illustrations, and many of them are in the public domain. Which means I am permitted to place images of these old works on my website.

I also include images that their creators allow to be used under Creative Commons licenses.

So a blanket statement of copyright would be grossly inaccurate. Most of the contents of my website belong to me, but not all of it.

The other reason I prefer not to use a blanket statement, is that I want to encourage people who like my books to tell others. While one friend talking to another has no need any special permissions, a blogger – writing a blog post about one of my books – who wants to use my cover images or marketing copy, does need permission. A very limited copyright statement might discourage these folks!

With all these parameters to keep in mind, developing my copyright statement took some thought.

Article 1, Section 8, Clause 8 of the United States Constitution

This is what I came up with:

You have my permission and encouragement
to reproduce my book covers and cover copy
for the purpose of telling others about my books.
Please do!

(That purpose only, of course.)
 
Public domain images that appear on this website,
images used under a Creative Commons license,
and excerpts from book reviews
possess links to their sources and credit to their creators.
 
All other content,
images, and text
copyright © 2011-2016
J.M. Ney-Grimm.

The first paragraph lets bloggers, reviewers, and others who want to talk up my books know that it’s fine for them to copy my book cover images and my cover copy on their own websites. I retain my copyright to those things, but I grant permission for them to be used.

The parenthetical remark that follows is probably not necessary, but I wanted to be clear, lest an ill-informed or muddled hobbyist think it would be okay to simply “borrow” one of my book covers to slap onto one of their own books. It wouldn’t! 😀

Next comes the statement about the elements appearing on my site that do not belong to me.

If you hover your cursor over the image of a public domain painting or a photo used under a Creative Commons license, you’ll see a little text box that displays the title its creator gave it (if it has one; not all do), the creator’s name, whether the image is in the public domain or is being used under a Creative Commons license, and the website where I found the image – usually Wikipedia, Wikimedia, or Flickr.

If you click on the image, a new tab will open on the page of the website where the original image rests.

When I quote from a review of one of my books, I include the name of the reviewer, and I link to the website where the review originally appeared.

Excerpt of a review by James J. Parsons of Perilous Chance

The final paragraph of my copyright statement is where I state my ownership. I created this website in early 2012, so you would think that the years specified would include 2012 – 2016. But I published The Troll’s Belt and Troll-magic in December 2011.

The marketing copy for those two books has changed many times, and the covers have been revised, too. However, the old covers and the old copy appear in some of my posts about cover design and copy writing. Therefore, I use the time span of 2011 – 2016. Of course, I’ll have to update that interval every year on January 1.

I placed my statement in both the sidebar and the footer of my site, because I want it easily found. If I put it in the footer only – well, I allow seven posts to appear on my blog page. It’s a l-o-o-o-n-g way down to that footer. Might as well be hidden behind blackout curtains! The statement in the sidebar is much more accessible.

But if you click on an individual post, the sidebar disappears. And the footer at the bottom of that one post (or the bottom of a page lacking a sidebar) is not far away at all.

So I’ve got both bases covered.

I am not a lawyer, so none of the above is legal advice. But I thought my thinking and my process might be of interest to some of you! 😀

For more about blogging:
Why Create a Site Map?
Slow Blogging and Other Variations
SPAM Deluge
New Home Page

 

Share

Why Create a Site Map?

Just 5 years ago, I’d occasionally stumble upon websites possessing a page called “site map” or “sitemap.” That page presented a long list of the entire contents of the site. I found such lists very useful. I could skim them quickly to locate exactly what I hoped to find. Or to determine that the information I wanted was not present. Often I’d discover hidden gems I hadn’t been seeking, but that I was glad to acquire.

I liked site maps. I wished that every website possessed one.

angled metal tracks on an electronic circuit board

Unfortunately the trend was moving away from my preference. Somehow it was decided that the sole purpose of a site map was to ensure that Google’s crawlers – and those of other search engines – could locate each web page efficiently, so that the page could be listed by the search company in their search results.

Now, I like relevant search. Very much. When I google something, I want the best result to appear on the first page. And perhaps site maps were always geared to ensure that this happens. Perhaps they were never intended to help human visitors. But these days, the site maps are all actively hidden from human browsers, tucked away where only crawler bots can see them. I think that’s a shame.

I’ve tried using the search boxes available on most websites. I’ve tried clicking on the by-the-month archive links. And the category links. But not only do these methods often fail to deliver what I seek, but they have little chance of turning up the hidden gems that I don’t know are present.

It’s a shame. Totally a shame.

However, there’s no reason my own site must participate in this great omission. I’ve had creating a site map on my to-do list for a long time.

It didn’t seem urgent at first, because my site didn’t have much content. In the summer of 2012, I had only 3 books published – each of which possessed its own web page – and I’d written a mere dozen or so blog posts. No doubt most visitors absorbed it all in under 10 minutes and then moved on, unimpressed. “Huh. There wasn’t much to that.”

Today it’s a very different site! This is my 238th post. I have 19 books published – each with its own web page. I’ve created 15 “lore” pages for readers who want to know more about the North-lands and the other worlds in which my stories take place. Plus there are the miscellaneous pages such as my bio, a sign-up for my newsletter, a landing page, and so on.

There’s a lot of content present. And since I don’t tend to write many ephemeral newsy posts, the material retains its interest for quite a long time.

But if no one can find my post on the limits of obtaining vitamin D from sunlight or my explanation of how magic works in my North-lands, then the posts may as well not exist.

I decided this week that it was time to tackle my site map. One intended for humans!

Multitasking, photo by Jenn Vargas

The task took longer than I thought it would. I suspect that is often the case with such projects. There is software to automate the process. But it seemed likely that it would take me just as long to learn the software as it would to create my site map by hand. And I believe the software tends to generate the proverbial wall of text.

Admittedly, all the site maps I’ve ever seen were walls of text. They were useful in that format, and I could have settled for such a basic list.

But I knew that if I grouped the list into related categories, it would be a lot more accessible and thus a lot more useful.

So I’ve done just that. Check it out! 😀

Site Map

I’ll lay you a wager that you’ll find something I wrote back in 2012 or 2013 or 2014 that tickles your fancy. Am I right? Tell me what post or page it was in the comments! 😀

For more about blogging:
Copyright Statement for My Website
Slow Blogging and Other Variations
SPAM Deluge
New Home Page

 

Share