Showing posts with label Blogger Stuff. Show all posts
Showing posts with label Blogger Stuff. Show all posts

7.24.2015

Reader Survey + $25 Amazon Gift Card Giveaway


Hey friends!  It occurred to me that I haven't done a reader survey in a while.  I'd like to know what you think, so if you could be so kind as to fill out the following survey and share your opinion with me, I'd be most grateful!  I'm also offering a $25 Amazon Gift Card to one lucky winner!



One lucky winner will win a $25 Amazon Gift Card (or they can opt for Paypal Cash-International will automatically get Paypal instead of Amazon).  Giveaway is open Worldwide and ends on 08/10/15 at 12AM. Entering below agrees to all terms and conditions within the widget.

a Rafflecopter giveaway

a Rafflecopter giveaway

4.07.2015

New Blogger Series: Basic HTML for Bloggers

Learn some basic HTML codes that you can use while blogging.

When I was in high school I took a web design class.  Back then, HTML was pretty much the name of the game, so my classmates and I took the time to design websites for ourselves using HTML coding and editing.  These days there are so many different types of code that are more commonly used, however my basic HTML skills have been some of the most useful when it comes to updating my blog.

I can edit my design, alter little things in my post, or do so much more with HTML-sometimes I can even use that HTML coding to go around some of the pre-set conditions by blogger.  So today I wanted to take the time to share a little bit of my basic HTML knowledge with you so you can use it in your blog posting.

Common HTML Terms

Before we get started with actual coding, it's important for you to understand some of the common HTML terms you may need to know.  Here are some of the more important things:

Angle Brackets:   
In HTML coding, the "greater than" and "less than" signs are actually called angle brackets.  You need angle brackets around anything you post.  So all of your coding will be put in angle brackets for it to be recognized as code and not just as something you've written.  Each section of your code will need to start with a less than sign < and end with a greater than sign > to be complete.

Attribute
An attribute is something added to a basic tag/HTML code to give it further description.  For example, if you were to have a basic image code, but want to define it further-you could add a size attribute to change the size, or add an alternative text to the photo.  The additions to the basic IMG tag are what we would call attributes.

HTML Converter
A software that converts HTML into actual code. Most blogging software automatically does this when you switch between the HTML and Compose tabs.  Though, in Blogger at least, you can turn it off in the right hand menu of your post-which I have done for this post so I can show you the HTML.

Closing Tag: 
Some codes require a closing tag which is usually just a mirror of the start of the opening tag but with a backslash in front of it.  For example, if your opening tag is <center> your closing tag is </center>.  This tells the HTML code to stop there, so you can move on to something new.  Some tags require closing (links, formatting, etc.) and some do not (such as and image).

HTML for Images

Image Code: 
Alt Text is the text that shows in place of a photo on your blog/site before the image has fully downloaded.  This text provides an alternative description of what the photo is in case the photo stops loading so that someone can see whatALTERNAT there-or for those people who have disabled images entirely in their browser.  Without the Alt Attribute it would just show up as a missing photo icon, like this:

But if you have an alt tag and the photo link is broken, it would look like this at least:

This image is supposed to show you the alt attribute

It's also extremely useful for SEO (Search Engine Optimization) as the search engines can pull from your Alt Text when crawling-<u><a href=" googlewebmastercentral.blogspot.com="" http:="" src="www.mysocalledchaos.com" target="_blank" using-alt-attributes-smartly.html="" />Google has officially stated that they use the alt tag for this purpose.  This is also useful for someone with a disability such as blindness, as the software they may be using to read your blog can also typically pull from that alt text to tell them what they would be seeing if they could see the image.  In Internet Explorer the Alt Text shows up when you hover over the image.

To add an alt tag to a photo you would add the above code to the IMG code.  For example:


Title Text/Title Attribute: title="TITLE OF PHOTO"
This one is pretty self explanatory, it should be a concise title of the image.  In browsers such as Firefox or Opera, this is what shows when you hover over an image.

If you add both, your new IMG code would look like this:


Image Sizing: 
If you want to adjust the size of your photos you can add width and height tags to it. The numbers for the sizes is in pixels though, so you'll want to make sure you understand the width of your blog post in pixels.

Your IMG code would now look like this:


For example, the main photo in this image (at the top) has a code that looks like this:



HTML for Links

Anchor: 
An anchor tab is for linking.  Meaning you are anchoring whatever you want to "link" (a photo, some text, etc.)  to a specific location.  To anchor/link something you use the code above, and the HREF stands for Hypertext Reference.  You must use a closing tag.

If you want to link to an external location with text, the code would look like this:


If you are linking a photo to an external location, the code would look like this:


If you want the photo to link to itself so it simply opens larger when someone clicks on it, simply place the URL for the picture in both the anchor tag and the image tag.  For example:



The Style Basics

Most of the time when writing a post your blogging platform or document will allow you to just do this using their toolbars, however the tips are still good to know in case you want to change things on your sidebar or clean up your HTML.

Center: 
This will center whatever you're working on.  It does need the closing tag or everything after putting in the opening tag will center.

DIV Alignments:




Bold: 
Italicize: 
Underline: 
Strike Through: 

Line Break: 
I use this one a lot.  Sometimes blogger makes an absolute mess of my posts and simply hitting enter doesn't fix it.  In those cases I can go in and use the br tag to put in my own breaks.  Each br tag takes you to a new line, so if you want a line space between instead of it just being on the next line, use two br tags right next to each other.

Horizontal Line:



Unordered Lists:
The ul tag is for an unordered list-which we may just call bullet points.
  • List item one.
  • List item two.
  • List item three.


Ordered Lists:
The ol tag is for ordered, or numbered, lists.
  1. List item one.
  2. List item two.
  3. List item three.


Start Your Ordered List with a Specific Number:
Sometimes when using an ordered list you want to add something after and then start with the next number, but the code wants to start with 1 again.  Never fear, you can change that by adding a "start with" code, like this:
  1. List item eighteen.
  2. List item nineteen.
  3. List item twenty.


Block Quote: 
Sometimes you want a quote to show up in a different format so it's clear that it's a quote. Like so:
You can’t connect the dots looking forward; you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something – your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life.

-Steve Jobs
Add a Text Box:
Possibly one of the most useful HTML bits of code I've used in composing blogs is a text box. I've used it a lot through this post-since you can put HTML in a text box without it converting. This is really useful if you want to provide HTML For a button or something other people can grab from your site. You would remove the extra space in the closing tag from my example though, as I had to remove it so my text box wouldn't close prematurely.

Scrolling Text Box:


It looks like this:

This is a scrolling text box. You can use the slider bar on the right there to scroll up and down and read my code here. You would replace what I've written here with the information you want in a scroll box. The more you rattle on in here, the longer your scrolling could be. The sky is the limit!

Are there any HTML tags you use regularly that I missed?



New Blogger Series


10.25.2014

Blog Tour: My Writing Process

How fun is a little blog tour?  I'm super flattered to be tagged by Kenzie from Chasing My Extraordinary in her blog tour post, she said such kind things about me!  So let's get down to it shall we? 

>>What am I working on?<<
Currently the majority of my focus is for my classes in school.  Unfortunately school currently sucks up a lot of my time and stamps out any room for new things, though they are still brewing in my head.  Artistically?  I'm about to begin work on a new idea I have for handmade Christmas gifts, which I can't tell you about yet because it'll ruin the surprise for those who are receiving them.  I also have a new Etsy idea, but it's going to take such a large amount of work that it wont be ready until next year, probably late next year.  There are still novels partially written on my computer, but for now they're going to rest while I write papers and solve math problems. :)

As for the blog, I'm working on getting everything set up and running for the Holiday Hotlist and 12 Days of Giveaways both here and over at Chaotic Goddess Swaps, which will accompany the 12 Days of Christmas Swap we'll be announcing there in just seven short days.  Yikes, I'd better get moving!

>>How does my work differ from others in my same type/genre?<<
That's a really hard question.  Personally, I don't believe we're all completely original little snowflakes, and I think teaching people that promotes over competition and resentment when someone who thinks they're unique finds someone a lot like them.  That doesn't mean we're all 100% identical obviously, but I think we are all similar enough that we should be promoting working together, rather than always standing out.  Personally, I know my voice may unique to me, but I get inspiration from other people without even knowing it, and when I come up with an idea all on my own I inevitably stumble upon someone else who had a similar idea before me, even if I never knew them before.  That's how the world works.  I would rather work on respecting that and embracing our similarities than getting upset over not being totally different from everyone else.

I love this quote from Jim Jarmusch in the 2004 MovieMaker Magazine (#53 Winter): “Nothing is original. Steal from anywhere that resonates with inspiration or fuels your imagination. Devour old films, new films, music, books, paintings, photographs, poems, dreams, random conversations, architecture, bridges, street signs, trees, clouds, bodies of water, light and shadows. Select only things to steal from that speak directly to your soul. If you do this, your work (and theft) will be authentic. Authenticity is invaluable; originality is non-existent. And don’t bother concealing your thievery - celebrate it if you feel like it. In any case, always remember what Jean-Luc Godard said: “It’s not where you take things from - it’s where you take them to." 

>>Why do I write what I do?<<
Why ask why?  I feel like we could get really existential here if we wanted to, but I'll avoid delving too deep into the psyche of "why" here-ha!

I write because I want to remember.  I want to connect.  I want to leave a lasting bond or legacy with the few people who knew me, or who truly took the time to get to know me through this blog.

I write to flex my creative muscles.
I write to keep up the habit of writing, so the talents and words are not lost in the shuffle of life.
I write to put my feelings and thoughts into the universe.  To manifest my future.

I write because the thing I've wanted to do most in the world since I was seven years old is write.

I guess that's why I write, but not why I write what I do.  So why do I write what I write?  Because it's what is there. It's what exists within me wanting to come out, and if I never let it out it implodes.

>>How does your writing process work?<<
There's no science or planning behind it at all haha!  Honestly, each and every post starts as a bunch of jumbled thoughts that I need to spill onto the page so I just start writing. I write and write and write without knowing where I'm going, and once it's all out on the page I go back and re-read what I've written to make sure it make sense.  Sometimes (a lot of the time) it doesn't, and things need to be reorganized, or I find I've completely switched direction somewhere and one post then becomes two.

Unfortunately when working on novels/books it doesn't work quite the same for me.  I get too hung up on editing as I go, instead of just letting it all come and going back.  I'll write a page and go back and edit and edit and edit until I've lost my flow and the book sits for a few months.  Guess I need to learn to apply my blog writing habits to my books.

>>Blog Tour<<
I'd like to introduce you to three of the strongest and most compassionate lady bloggers I know.

This is Karen from A Peek at Karen's World.  Karen has been a great bloggy friend to me over the years, and I love how she presents herself on her blog.  Not only is she one of those people that accept you for who you are even though her beliefs differ, but she has unending support too!  She's always been incredibly supportive in her meaningful comments she leaves-she's a great bloggy buddy.  On her blog she talks about a little bit of everything, but she also has a fantastic sense of humor and a storytelling ability that makes everything she writes intriguing! Seriously, it's fantastic. Go read it.

It's not hard for me to express just how much I love and appreciate Beth of Printcess & Living a Goddess Life.  This girl has been so many things to me in the ten years we've known each other.  Shes' been my personal "Dear Abby", a "shoulder" (though virtually) to cry on, and one of the best friends a person could have.  She's also my partner with the Chaotic Goddess Swaps venture, and without her I'd be lost.  I mean seriously, without her CGS wouldn't be around because while I do a lot of the design work, she has all of the organizational talent.  She keeps things running smoothly!  Trust me when I say this-you NEED her blog in your life.  If's so useful, and she's a great friend to have!

Another blogger I had the pleasure of being introduced to and having in my life for quite some time now is Aubrey from High-Heeled Love.  If Wonder Woman is real, it must be Aubrey.  She owns her own business and is a jujitsu warrior.  I mean, she's one tough cookie who can hold her own in this crazy world.  I absolutely look to Aubrey for shoe, wine, or coffee advice (three of the best things in life) and I am so grateful to know her-she has such a big heart.  

6.05.2014

Liebster = Beloved {Award}


I haven't done one of these in a while, so I thought it could be fun! I want to thank all of the awesome people who have nominated me in the past even when I didn't do them, and this time Sparkles & Glue, You're in Brooklyn, and Tracie Everyday (from clear back in August, I didn't forget you!) for the nominations!    So now I'm going to attempt all of the questions-but I'll remove any duplicates I come across.  Follow the break to continue reading-this post might be a little long, but I'm going to nominate plenty of awesome bloggers!

I had to look up Liebster because I wasn't sure what it means exactly.  Google Translate says it's German for "Dearest" and the Dictionarist says it means "sweetheart, beloved person, or darling."  Awwwe! ♥

The rules of the Liebster Award?  Thank the person who nominated you and link back to them, answer the 11 questions provided to you by the blogger who nominated you, provide 11 random facts about yourself, nominate 11 blogs you feel deserve the award, and ask your nominees 11 new questions.

9.18.2013

New Blogger Series: Hosting Linky Parties

New Blogger Series: Hosting Linky Parties

One of the greatest way to build your followers and meet new bloggy besties is to participate in linky parties.  Sometimes, it's even better to host one!   Do you have a fabulous idea for a linky party?  Here's some information to help you get started with one!

Clarify your idea

The first step in getting started with your linky party, is to clarify your idea before you propose it or share it with the public.  Write it down, play with the idea, make sure you have a very clear vision for what you want to do with it.   Is this a crafting link-up?  Is it a certain type of post?  Make sure you know exactly what you will be asking people to do if they link up with you.

Getting Started

Once you're absolutely sure where you want to go with it, it's time to get started setting it up.

Who's hosting?  Are you going to host it all by yourself or are you going to get some co-hosts to host with you?  This is entirely up to you-if you want all of the credit go on and do it yourself, but sometimes taking on co-hosts is a great way to get more attention and promotion for your linky.
  
Choose a name for your linky.  The name should be catchy and should reflect what the posts are about.

Create a button for your linky. You'll want an eye-catching button that shows what your linky is about and has the name of your linky party on it.  Users will be able to grab this for their posts they link up.

What is the schedule?  Is it a weekly link-up?  Monthly?  What day of the week/month will it run on?

What are the rules?  Most linky have some kind of rule structure.  If you don't want any rules, that's cool too, but if you do then you'll need to define them first.  Do you want to require they have your button or a link back in the post?  Do you require they be on a certain topic?  It's up to you.

Decide which Linky tool you'll use. Once you're ready to start posting, you'll have to decide which tool you want to use for managing your links.  There are so many fantastic options out there, but here are the main four I see in usage on a daily basis, and my impression of them.
  • Linky Tools:  This is the tool I've been using for years.  I'm tempted to try out some others, but since I have been paying for this one I haven't yet.  
    • Pros:
      • Easy to use
      • Has both blogger and wordpress code
      • Linky directory so you can get more publicity for your linky party
      • Has lots of options for different types of linkies and settings in your linky
      • Great support.
    • Cons: 
      • Costs $2 per month to use
      • Requires an extra step to link up (you click on the link up link and go to a new page to link up instead of just linking up right there)
      • No real organization in your dashboard-which can be quite confusing
  • InLinkz: This is one of the more popular linky tools out there (you've probably seen it with the little blue frog) and the one I've considered switching to.
    • Pros
      • It's free
      • Remembers your field data from linky to linky  
      • Has different options for what kinds of linkies you can do
      • Has a project manager to keep all of your information organized.
    • Cons: 
      • An extra step-you have to click on the link for the pop up to enter your info and hit next to select a photo
      • Sometimes it doesn't find photos on the site easily
  • Mister Linky: This is one I see a lot when linking up from other blogs.  I've never used it myself on my own blog, but I have entered my links into it many times.
    • Pros: 
      • Remembers your field data from linky to linky 
      • No extra steps-enter your data right there at the bottom of the post and submit.
    • Cons: 
      • The website is awful, as it looks pretty old and outdated so I suspect it doesn't have a lot of features (though I don't know for sure) and appears to be a little hard to navigate
      • Appears to have a cost associated, but that may just be for upgraded memberships
  • SimplyLinked: I see this one sometimes, and it's my least favorite to enter my link in.
    • Pros: 
      • Very stylish design
      • It's free
      • Enter your data directly to the post
      • Looks easy to set up.
    • Cons: 
      • Does not remember form data (so for someone entering the same thing they have to re-type everything every time)
Linky Button with HTML Code

You're going to want to include your linky button in your post with the HTML Code so people can easily grab it.  Not sure how to include the code?  I'll show you!
  1. First, upload your button/image to a photo hosting site. (I use Photobucket)
  2. Copy and paste the following code (after the instructions), into your post.
  3. Replace the CAPITALIZED WORDS with your links/information.
  4. Adjust the size of your text box by changing the nmbers after cols="##" and rows="#"

For example, if I were to use the following button code with my New Blogger Series, it would look like this:


*Note 1: For some reason it wont let me put in the correct /textarea code there, so just make sure to remove the spaces between the < > marks and /textarea.

*Note 2: You can change the size of your button image by adding the codes like I did above inside the img src= code after the "URL" width="###" height="###" before the closing > mark.

The end result of copying the code, changing the sizes and replacing those words would look like this:

New Blogger Series

Setting Up Your Posts

You're going to want to figure out a draft structure for your posts and try and stick with it as much as possible each time your linky party goes up.  This helps for a sense of stability, and the people linking up will have an easier time joining you each week.

Components of your post:
  • The Blog Button with an HTML grab box so that they can easily grab your button code to put in their posts.  (See above)
  • An explanation of what the linky party is and when it happens.
  • The rules, if there are any.
  • Information about the hosts, if there are other hosts.
  • Your post that fits within the linky party.
  • And the Linky tool you've chosen where they can link up their posts.
Linky Parties I Love

I currently host/co-host several linky parties.  Musical Mondays every Monday where we share songs we love, The Monthly Goals which runs the first Wednesday of every month and we share goals and successes/failures, The Weekly Round-Up every Sunday where we share posts by other people, and very recently I started co-hosting Aloha Friday, which is a weekly link-up aimed at building your following and following others.

Are you looking for more parties to join? Here are some by other bloggers that I love who run fantastic link-ups-so you can look to them as examples if you'd like too!  Check them out:

9.12.2013

New Blogger Series: Running a Giveaway

New Blogger Series: Running a Giveaway

There is no doubt that running giveaways is one of my favorite things to do; not only when I feel the need to grow my blog, but also when I just want to do something nice for my readers, the giveaway sponsor, and sometimes myself.  It makes me feel great to give, and I love seen the responses as people enter as well as the excitement when a winner is drawn.  It's comments like "Thank you! I never win anything!" or "This is going to be so helpful because I lost my job and needed this so much!" that really make my heart melt and keep pushing me to do these things.

Don't be confused, giveaways aren't entirely fun and games, they take a lot of work and there are a lot of rules to follow if you want to do it legally.  However, at least for me, it's all worth it in the end.

Giveaway Prizes

Sometimes finding the perfect prize can be difficult, and sometimes it just falls into your lap.  Maybe you found a great sale on something spectacular and you bought an extra to give away to your readers, maybe a company emailed you asking to give something away on your blog, or maybe you have sponsors on your blog (see also, New Blogger Series: Accepting Sponsorship) that would like the extra promotion from a giveaway-here are a few things to keep in mind about giveaway prizes:

  • Value.  Your prize should be something that someone really wants to win.  Chances are that no matter what you put up for giveaway someone will enter, but the more value the more entries you get!
  • Topic.  Your prize should be something that goes along with your blog.  This is easy if you're a lifestyle blog, but not so much if you have a niche (see also, New Blogger Series: Finding Your Niche.)  If you're a beauty blogger and you're giving away cleaning products, or a fitness blogger giving away candy-it doesn't make a whole lot of sense.  
  • It's OK to turn prizes down. You don't have to accept every company giveaway offer you receive.  It's perfectly fine to reply with a simple "Thank you for your offer, but I really don't feel like this fits with my blog" or "I don't feel that I can properly support this product as I've never tried it" etc.
  • Shipping.  If you are providing the item or mailing it yourself, keep in mind how much shipping will be.  You may want to go for lighter items, or items that you can ship directly from the seller to avoid extra shipping costs.  This may also influence where you want the giveaway to be open to, as your price is going to be greater if you ship outside of your own country.
  • Gift Cards are great.  Everyone loves to win Gift Cards, and you can easily have certain gift cards open worldwide for sites that can be redeemed or shopped with anywhere.  Virtual gift cards are awesome also, as you don't have to do any mailing-you just go to the company's website, buy the gift card, and email it to your winner!  (This is often why I give away Amazon, Etsy, or Starbucks gift cards-they make it so easy!)  
Getting Started

So you have your prize, now what?  Well it's time to set up the giveaway.  Here are some questions to get yourself started setting up the giveaway:
  • Who is it open to?  U.S. Only?  U.S. & Canada?  Worldwide?  There's no doubt that the more people you open it up to the more attention it will get-so Worldwide is often the best for gaining entries-however as mentioned above, Shipping can be an issue.  Sometimes if it's a sponsored prize the company/sponsor may already have decided where they'll ship.  If it's not, you have to decide where you're willing to ship, or where you can ship to.
  • When will it go live?  Research shows that giveaways do better when they are posted during the first part of the week, and when the end on a Monday night/Tuesday morning.
  • How long will it run?  I generally like to leave mine open anywhere from 1-2 weeks.  Too much longer feels like eventually it just stops getting attention (unless it's a month long giveaway, like my monthly Musical Mondays Giveaways that I repost every Monday so it's still fresh all month long), and only a few days doesn't give it enough time to get the attention it deserves.
  • How will people enter?  Personally, I prefer giveaways that run through a service such as Rafflecopter (no they didn't pay me to mention them, I just prefer it) for both hosting and entering.  There's always the old fashioned "leave a comment for everything you do" method, but it takes so much more work on both your part and the person entering.  You have to gather all the entries, make a list, and use something like drawing out of a hat or random.org to do all the work, where the Rafflecopter (or other services like PromoSimple) requires the setup and then it does the rest of the work for you and even creates reports with the information.  Personally, I also wont do much to enter giveaways that don't use a widget-it just takes too much time and a lot of page refreshing I'm not willing to do...

Once you've figured out how you want to do your giveaway, you need to figure out what people have to do to enter.  This is where a lot of the rules and regulations need to be followed, as there are actual laws regarding blog giveaways/contests that people don't realize are out there.  Here is the full 2013 FTC guidelines document regarding blog giveaways for your review.

A few key points:
  • Your disclosure about it being a sponsored giveaway/post needs to be at the top of the post and needs to be at least as large and noticeable as the rest of your post-it needs to be clear to your readers.
  • Your mandatory entry cannot cause consideration.  Meaning you can't really get anything out of it-you can't require them to buy anything, to follow, etc.  At this time it appears that leaving a comment to as the mandatory entry is still OK, otherwise it's recommended you have a "free entry" where they don't have to do anything.  Your optional entries can be anything though-this is only for your mandatory entry.  This also can't be "go to so and so's site and tell me what you'd buy) as that's still consideration-if you do this, make sure you have a free entry before it and that is not mandatory.
  • Entries need to be the same value.  You can't make something worth more than something else as that's considered giving unfair advantage.  If you make 1 entry worth 5pts, they all have to be 5pts.
  • NEVER extend your giveaway.  It's illegal to change the end date you've already announced-even if you only have a few entries-you have to honor what you have already stated.
  • Tax Information.  If your giveaway has a combined total prize over $600 you are required to provide a 1099 form to the winner with your prize, and you have to collect their information like SSN to do it.  Try and make sure your prize is under that amount to make life easier on yourself.
  • Be aware of what your blog giveaway really is.  There are three different types: sweepstakes, contests, and giveaways.  Make sure you're running yours right.  For more information, see: Sweepstakes, Contests and Giveaways-Laws Bloggers & Brands Need to Know by Sara H. Hawkins.
  • Know the Terms for any sites you plan to use as entries.  Facebook, Twitter, Pinterest, etc. all have their own T&C (Terms & Conditions) for what you can do with their product, so be aware of what their rules are in order to not violate them.  Using a service such as Rafflecopter also makes this easier because they do a lot of the research for you and have set their options up to make sure they're in line with that.
  • Know the laws for various states/countries: If your giveway is open to other countries or has prizes coming from different states, you need to be aware of the laws for each of those locations.
  • Terms and Conditions.  You NEED a Terms and Conditions when running a giveaway, and it has to include a few key facts:
    • "No Purchase Necessary" must be included.
    • Must state eligibility requirements such as name, location, age, etc.
    • It must include how to enter. "enter via Rafflecopter"
    • Dates and deadlines, such as the exact date and time it starts and ends.
    • The odds of winning.  This can be tricky, so put something like "The number of eligible entries determines odds of winning."
    • Prize Description (be specific) and where the prize is coming from.
    • What you will do if the prize is forfeited or unclaimed.
    • Who is responsible for paying taxes.  I put "Winner's responsible for all taxes related to the winning of this prize."
    • Include a liability release "My So-Called Chaos is not liable for loss, shipping issues..." etc.
    • How and when the winners will be selected.
    • That you have the right to obtain and publicize winner's information.
    • ALWAYS put "Void where prohibited by law!"
Here's an example of my Terms and Conditions:

Running a Giveaway: My Terms and Conditions


There are a lot more rules and guidelines than I mentioned above, so make sure you do some further research if you're nervous. For more information on this, please see these posts by the brilliant bloggers I learned a lot of this from:
Promoting Your Giveaway

Now you're all set up with your giveaway, it's posted, how do you get entries?  Well, you're going to get entries first from the people who regularly follow and subscribe to your blog, but what next?
  • Share it on your Social Media sites.  Let all of your readers followers know what's happening on your blog and where to go to find it! Tweet it, Pin it, Stumble it, etc.  Don't just do it the first time, do it several times throughout the course of the giveaway.
  • Use your newsletter.  Do you have a newsletter with subscribers?  Shoot them a quick email letting them know it's live and they can enter!
  • Reach out to people you sponsor.  Are you sponsoring other blogs?  They generally will help you share your post too!  Ask them to share it with their followers on Twitter, Pinterest, etc.
  • Include share options in your giveaway.  If you have an additional entry be "Pin this giveaway" or "Tweet this giveaway" that makes it so every person who uses that entry shares it with their followers too, making your reach much larger.
  • Put a link or button in the sidebar on your blog.  That way, even if you are posting other posts and that giveaway is getting pushed down, people can still see it and go to it.
  • Promote giveaways within your giveaway.  If you're running more than one giveaway at a time, have entering the other giveaway an optional entry in the giveaway you're setting up.
  • Share on other sites.  One of the absolute best resources I've ever come across is the Blog Giveaway Directory on Squidoo.  I use this nearly every time I run a giveaway, as it has links to hundreds of sites you can go through and list it on, link it up with, and email and have them list your giveaways for all of their followers as well.  Also, if you're feeling lazy, you can hire them to go through and list it everywhere for you! 
5 Effective Promotion Tips for Ending Your Giveaway

Words of Advice
  • Have fun.  I know that with all the information and rules above it seems daunting, but giveaways can be a lot of fun.  Get creative with the comments-ask people who enter to answer a question or introduce themselves.  I've seen so many fun things this way! 
  • Double check your facts and dates before posting.  Make sure you have things properly listed before you post, so you don't have to go back and edit things.
  • Create a giveaway image.  Having a photo of what your'e giving away with details can really make sharing it easier, as well as make it easier for people to pin it and notice it.
  • Make your links open in a new tab.  If you're using Rafflecopter it already does this (as long as you properly link-check your links in the widget, if you're using it, before posting.).  If you're not using it, blogger already has a setting you can check when adding a link to make it do this.  This makes sure they stay on your giveaway post even if they go check out another sponsor or something.  

7.17.2013

Recent Blog Design

Today I wanted to share with you a few blog designs I've done in the last few months.  

Ricki Jill hired me to do the design for Art @ Home as her family's Mother's Day gift to her, and I was so excited to be able to put together a theme that I thought would fit her.  Since she's a painter I wanted to go with some paint designs and some of her favorite colors-and the result not only ended up being really creative and brightly colored-but it was near and dear to her (awesome coincidence since I didn't tell her what I was doing) since she gets teased often about how messy of an artist she is! See the full design HERE!

Art @ Home Blog Design

Cerise from Craft Cherry won her design in one of my giveaways, and I had so much fun making her little cherries (stitches and all since she's a crafter) from scratch.  I loved the color scheme she chose, and it was really great to be able to put some of those colors into action throughout the rest of her design!  Some of the most fun I had was with her topics-I wanted her readers to easily find the different crafts! See the full design HERE!

Craft Cherry Blog Design

Kayla also won her design for Green Mountain Couple in one of my giveaways.  Since her and Dan are big on the outdoors I wanted to stick with their "green mountain" theme and literally made them a green mountain from scratch and matched it with their already existing logo.  We also thought it would be fun to do the Social Media icons as little state shapes, since they're really proud of where they come from!  See the full design HERE!

Green Mountain Couple Blog Design

Don't forget that if you'd like some help sprucing up your blog, you can use code SUMMERLOVE to take 20% off any blog design order in my shop until Sept.! 
xoxo Miss Angie


Related Posts Plugin for WordPress, Blogger...

 photo copyright.jpg
envye template.