• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar

Kristie Hill

Grow your blog business.

  • Start a Blog
  • Build a Site
  • Grow
  • Articles
  • Courses

November 18, 2014

How to make your blog content pop!

FacebookTweetPinShare1

Hi there! Today’s post is part of The Design Your Own (lovely) Blog, Blog Tour hosted by the fabulous Marianne. This is the last week of the 3 week blog tour full of helpful blog design tips and tutorials, including Anna’s tutorial yesterday on how to spice up your footer.

Today I am teaching you how to make your text stand out by using block quotes and content boxes.

A block quotation is a quotation in a written document, that is set off from the main text as a paragraph, or block of text, and typically distinguished visually using indentation and a different typeface or smaller size quotation – Wikipedia. This is a block quote.

What is a content box? A content box is a box used to visually offset text or content within a section of text. This is a content box.

How to use Blockquotes for and content boxes

I like to think that blogs are more like magazines than they are books or journals. Think back to the last magazine you read in the grocery store checkout. What did the pages look like? Magazines are littered with contrasting texts.

We all know that it is very important to have a great blog design, but we also know that “content is king”. So add style to your content and make your text stand out with block quotes and content boxes.

It does take a bit of coding to achieve block quotes and content boxes, but I’m going to walk you through the steps.

Create custom block quotes for your blog

Block quotes are used when you quote someone else, another article, or even yourself. Use block quotes when you share exact quotes. They are usually indented from the body text and are italicized.

WordPress and Blogger both have built-in block quotes, but the following are examples of customized block quotes.

This is a classic block quote with a default quotation mark on left side.

Happiness can be found even in the darkest of times if one remembers to turn on the light -Albus Dumbledore

This is a block quote with left border

If you fall behind, run faster. Never give up, never surrender, and rise up against the odds.- Jesse Jackson

This is a block quote with borders on top and bottom.

Success usually comes to those who are too busy to be looking for it.
Henry David Thoreau

This is a block quote I created for a client. It uses images as the top and bottom border.

You build on failure. You use it as a stepping stone. Close the door on the past. You don’t try to forget the mistakes, but you don’t dwell on it. You don’t let it have any of your energy, or any of your time, or any of your space.”
– Johnny Cash

CSS code for block quotes

Here is the code used to create the block quote examples above. Feel free to use and modify these to create your own block quotes. Simply choose a code and copy/paste it into your blog’s stylesheet (I’ll show you where to paste it in the instructions below).

*/Classic block quote———————– */
blockquote {
color: #999;
margin: 40px;
font-style: italic;
}
blockquote::before {
content: “\201C”;
display: block;
font-size: 20px;
height: 0;
left: -20px;
position: relative;
top: -10px;
}
*/Block Quote with left border———————- */
blockquote {
border-left: 4px solid #18B888;
color: #18B888;
font-style: italic;
margin: 30px 0 30px 15px;
padding-left: 15px;
}
*/Block Quote with top/bottom border———————– */
blockquote {
border-top: 1px solid #3A78AB;
border-bottom: 1px solid #3A78AB;
color: #3A78AB;
font-style: italic;
margin: 30px;
padding: 30px;
text-align: center;
}
*/Block quote with image border———————– */
blockquote {
background:
url(https://kristiehill.com/wp-content/uploads/2014/11/blockquotebg.png) top center no-repeat,
url(https://kristiehill.com/wp-content/uploads/2014/11/blockquotebg2.png) bottom center no-repeat;
color: #EF5488;
font-style: italic;
margin: 30px;
padding: 30px;
text-align: center;
}

Instructions for adding block quote CSS to WordPress

From your WordPress dashboard, navigate to Appearance – Editor and select your stylesheet (style.css). Find the code for the current block quote code and replace it with your custom CSS.
How to add CSS to WordPress

Instructions for adding block quote CSS to Blogger

From your Blogger dashboard, navigate to the Template screen and click Customize. Once you are inside the blogger template designer, click advanced and scroll down to Add CSS. Add the CSS for your custom block quote and then click apply to blog.
How to add CSS to blogger

How to use block quotes within your posts

Now that you’ve added CSS for block quotes to your stylesheet, it is easy to use them inside your blog posts. Simply highlight the text you want to be a block quote and click the quotation symbol on your toolbar.

how to add blockquote wordpress

how to add a blockquote blogger

Create content boxes for your blog.

Content boxes put your text within a color box. For example, I use yellow content boxes any time I give a blogging definition within a blog post. I also use content boxes to separate the different services I offer. Some bloggers use content boxes to emphasize phrases from the article. Marianne uses content boxes to introduce guest writers on her blog.

This is a content box without a border. Use it to highlight important text within your articles.
This is a content box with a left border only.
This is a content box with a solid border

CSS code for content boxes

Here is the code used to create the content box examples above. Feel free to use and modify these with your blog’s colors to create your own content boxes. Simply choose a code and copy/paste it into your blog’s stylesheet.

*/Green content box———————– */
.content-box-green {
margin-bottom: 30px;
overflow: hidden;
padding: 30px;
background-color: #18B888;
color: #fff;
}
*/Gold box with left border———————– */
.content-box-gold{
margin-bottom: 30px;
overflow: hidden;
padding: 30px;
background-color: #dfd09c;
border-left: 8px solid #C6AC4F;
}
*/Plum box with border———————– */
.content-box-plum {
background-color: #cb93c1;
border: 1px solid #351930;
margin-bottom: 30px;
overflow: hidden;
padding: 20px;
}

Instructions for adding content box CSS to WordPress

From your WordPress dashboard, navigate to Appearance – Editor and select your stylesheet (style.css). Scroll to the bottom of your stylesheet and paste your desired code.

Instructions for adding content box CSS to Blogger

From your Blogger dashboard, navigate to the Template screen and click Customize. Once you are inside the blogger template designer, click advanced and scroll down to Add CSS. Paste the CSS for your desired content box and then click apply to blog.

How to use content boxes within your posts

Once you’ve added the CSS for content boxes, you will have to manually add code in the post where you want the content box to appear. The content box is created with a div class. Switch to your text mode and use the following code:

<div class=”content-box-plum”>This is what you want to inside the box </div>

The information inside the quotations needs to match the CSS class .content-box-plum at the beginning of the code you pasted into your CSS.

Go design your own blog!

Hopefully this tutorial will inspire you to create your own custom content boxes and block quotes. Leave me a link once you do, I’d love to see how you use block quotes and/or content boxes to make your text stand out!

Don’t stop with this tutorial, make sure to check out all 14 tutorials and tips to help you design your blog!
Design Your Own Blog - Blog Tour
Yesterday’s Post: Designing Your Blog from Head to Footer by Anna of Anna Marie Moore Designs
Tomorrow’s Post: Marianne at Design Your Own (lovely) Blog

About Marianne and Design Your Own (lovely) Blog

Marianne has been helping women to create lives they love by giving them confidence when it comes to their own blog designs. Her goal is to provide economical DIY ways for them to get started and help them feel better about who they are and what they have to offer.

I first discovered Marianne’s blog while I was still in the pre-launch phase of this blog. Once I went live, Marianne is one of the few people who noticed my blog when it was Dreamy Ambitions (that only lasted a month). She has motivated me from the start!

I really resonate with Marinane’s purpose for the blog tour and her blog. We share the same goal: to provide DIY ways for you to get started and feel confident with your blog.

Resources:
How to use block quotes
colored content boxes

FacebookTweetPinShare1
Save to Pinterest!

Filed Under: CSS and HTML Tutorials, Popular Posts Tagged With: customize your blog Conversation: 68 Comments

Kristie Hill

Hi! I'm Kristie, but you probably guessed that. I'm here to help you with the technical, social, and business sides of blogging so that you can focus on the most important part of your blog: your content. You can learn more about me here. Go ahead and stalk me Facebook, Twitter, Pinterest,

Save to Pinterest!
Previous Post: « The Ultimate DIY Quick Guide to moving from Blogger to WordPress
Next Post: How to add “tweet this” links in your blog posts. »

Reader Interactions

Comments

  1. Michelle Christie says

    March 15, 2018 at 12:46 pm

    Can I please have the code for the yellow content box that you use, I tried editing the code myself to get the exact yellow and margin but omg this coding stuff is not my cup of tea.

    Reply
  2. Samuel Wilson says

    November 20, 2017 at 8:42 am

    It works. Thanks so much.

    Reply
  3. Miles Montego says

    August 24, 2017 at 9:52 am

    please i tried it out on my blog but it didn’t work out take a look at my blog to and tell to see what i’m talking about >> http://www.myfurniturezworld.blogspot.com..

    Reply
  4. Gage says

    July 31, 2017 at 9:41 pm

    A helpful post. Your suggestions for creating blockquotes and content boxes are perfect. Thanks for the step by step guided procedure. Appreciate you hard work.

    Reply
    • Kristie Hill says

      August 2, 2017 at 7:23 am

      You’re welcome! I hope it they turn out well on your site.

      Reply
  5. Anyaogu Ikechukwu says

    July 27, 2017 at 8:23 am

    Am not really code savvy. Is there any way I can do this with plugins

    Reply
  6. Theresa Gray says

    July 19, 2017 at 10:27 am

    I like the tips you’ve provided to help jazz up my blog. I use Wix, and I’ve heard some negative things about it. I bought a year contract and I’m about half way through. Do you have any thoughts on that platform (generally speaking)? I think that I can easily do the quotes with the lines, but I’m going to try to see about the content boxes.

    Reply
    • Kristie Hill says

      July 20, 2017 at 6:51 am

      Hi Theresa, I haven’t used WIX since 2009 so I’m not too sure how far it has come. Do you have access to edit the CSS? If so then you should be able to do all of these.

      Reply
  7. plumbers Denver says

    June 9, 2017 at 9:31 pm

    Impressive post! After reading this information I want to say that you have created very interesting information. Keep doing the great work up.

    Reply
    • Kristie Hill says

      June 9, 2017 at 10:48 pm

      You’re welcome!

      Reply
  8. Jessica says

    June 1, 2017 at 3:00 am

    Hi, Kristie! Thanks so much for sharing this. I’m brand new to Blogger, CSS, and all that jazz. I used your block quote with top and bottom border, and my only question is this: how can I adjust either the code or other settings to remove the quotation marks entirely?

    I want to be able to attribute the quote within the blockquote area, but I don’t want the person’s name to automatically go inside of quotation marks. If I can remove the quotation marks entirely or be able to input them manually when I write the quote in my post, that would be ideal. And I have no idea how to do it 🙂

    Reply
    • Kristie Hill says

      June 2, 2017 at 2:27 pm

      Hi Jessica, the code I’ve provided does not have any quotation marks in it. Perhaps your template is providing them?

      Reply
  9. Tusher Hossan says

    May 1, 2017 at 3:29 am

    What a help.
    Thanks from my heart.
    I just implement This.

    Love Post.

    Reply
    • Kristie Hill says

      May 4, 2017 at 7:21 am

      Glad to be of help!

      Reply
  10. karen says

    April 6, 2017 at 9:38 am

    Hey Kristie – this is exactly what I have been looking for – bit nervous to make the change since I haven’t done coding yet, but I really want to add a text box.
    Just to be clear, in WordPress…I add the CSS to the VERY end of the page?

    Reply
    • Kristie Hill says

      April 6, 2017 at 9:21 pm

      The css for the code needs to go in your css file. Which you can access via Appearance > Editor > and then find your style.css file from the list on the right-hand side. Add the code at the VERY end of that page.

      Then, you’ll be able to use the text box anywhere you want in your posts. Let me know when you have it up. 🙂

      Reply
  11. Hani says

    March 15, 2017 at 1:06 am

    I tried it both on my blog on blogger but it doesn’t work tho, what’s wrong?

    Reply
    • Kristie Hill says

      March 16, 2017 at 7:20 am

      oh no! It should work on blogger. Where are you pasting the CSS and where are you using the code within a post?

      Reply
  12. MD Kawsar says

    February 7, 2017 at 10:23 am

    Wow, Really it’s a great post. Your blog is really excellent. I read your full article. Really I enjoyed it.

    Reply
    • Kristie Hill says

      February 15, 2017 at 10:06 pm

      Thank you MD. Do you use content boxes on your site?

      Reply
  13. Ravi says

    September 28, 2016 at 9:17 pm

    I use quote in my blog. Please tell me how many blockquotes we use in a post??

    Reply
  14. Jane Akre says

    March 22, 2016 at 10:02 pm

    Hi Kristi- Help.. I just had another company host my site meshnewsdesk.com and I’ve lost the ability to box copy/images with the quote marks. I do not know code and am not really interested in learning it….afraid I’ll screw it up. But I really want to regain that option.

    Is there likely something I should have them add with CSS? Previously I would highlight copy and had it wrap around photos, sometimes the double box turned out very interesting, stacking copy and images. There was not color or background involved, just changing the format a bit by using the quote marks.

    Reply
  15. [email protected] Interior Frugalista says

    May 5, 2015 at 9:54 am

    Hi Marianne, I’ve copy pasted the code you provided into my CSS in Blogger and followed your instructions but for some reason it’s not working. In my blog post I highllighted the text and pressed the blockquote button and in the post html it’s showing the code for blockquote before and after the text. Any thoughts on what I might be doing wrong? The only thing I changed in the CSS was the color (#ADC39F). Thank you!

    Reply
    • Kristie Hill says

      May 5, 2015 at 10:19 am

      Hi Marie, can you give me a link example where you tried using a blockquote so I can inspect it?

      Reply
    • Kristie Hill says

      May 5, 2015 at 10:20 am

      Also, make sure there is a ; after the color you changed.

      Reply
  16. [email protected] Interior Frugalista says

    May 4, 2015 at 8:24 am

    This post was very helpful Marianne – thank you so much! I’ve wondered how to do this properly in Blogger. Pinned and printed and definitely setting this up.

    Reply
  17. Joanna May says

    April 21, 2015 at 4:25 am

    Hi – I love your blog and ideas. But just to let you know that you have a missing { for your Green content box code. I only discovered this once I entered the code into my CSS and updated. Now EVERYTHING that should be white has gone beige (the colour I selected for my content box) – not only on my site, but on my whole PC. I have deleted the code, restarted my computer, and even tried putting in the wrong code again but with white instead of beige to try to reset everything to white….but to no avail. I now have a beige PC!! (My site looks fine on other computers.) Help! Does anyone know what I can do?
    PS I haven’t actually launched my site yet. You are welcome to visit, but be aware….it’s not finished!

    Reply
    • Kristie Hill says

      April 21, 2015 at 7:29 am

      Oh no! Joanna, I am so sorry for the trouble I caused you. The site looks normal and I’m not seeing any code for content boxes in your CSS. The site is probably still showing up with beige on your bworser because you need to clear your browsing history.

      As to your PC being beige though, I have no idea! That’s very odd actually.

      Editing CSS in your stylsheet on WordPress should not have any control over your computer. Are you editing it locally on an editor program like DreamWeaver?

      Reply
      • Joanna May says

        April 21, 2015 at 11:19 pm

        Hi Kristie

        Thanks for your reply. Yes – the site looks normal viewed from any other device. The issue is just with my laptop!
        Yes, I’m just editing locally within WP. I’ve deleted all the content box code now – will stay away from that for a while!! Clearing the browser did not help.
        Oh well – I can live with it – at least it’s beige and not bright pink! I’ll ask a programming friend for help 🙂

        Reply
  18. Stefanie says

    February 10, 2015 at 8:26 pm

    This is the 1st step-by-step I have read on this topic! Thank you for covering this!

    Reply
    • Kristie Hill says

      February 12, 2015 at 1:32 pm

      You’re welcome Stefanie! You’ll have to let me know when you add one in your posts and I’ll check it out!

      Reply
  19. Lauren Jade Martin says

    December 29, 2014 at 4:02 pm

    Very informative and useful post! Thanks!

    Reply
    • Kristie Hill says

      January 5, 2015 at 2:46 pm

      Have you used a blockquote or content box in a post yet? I’d love to see it!

      Reply
  20. [email protected] Peaceful Haven says

    December 3, 2014 at 9:26 am

    Been wanting to know how to do this…so much to learn while blogging! I appreciate your help and guidance!

    Reply
    • Kristie Hill says

      December 4, 2014 at 10:51 pm

      I still learn something new about blogging every day!

      Reply
  21. Noemi says

    December 2, 2014 at 1:37 pm

    Great post! Thank you!! I love using the block quote with borders. 🙂

    Reply
    • Kristie Hill says

      December 3, 2014 at 8:18 pm

      I like your block quote with green borders!

      Reply
  22. Pam Garrett says

    November 23, 2014 at 6:54 am

    Thanks so much for this great info!

    Reply
    • Kristie Hill says

      November 24, 2014 at 1:06 pm

      You’re welcome Pam!

      Reply
  23. BritishMumUSA says

    November 22, 2014 at 6:24 pm

    How cool is this…… I love it, a few weeks ago I discovered the twitter box that you can put in your post content, but I love these ideas too. Thanks for sharing…. So excited to use, tomorrow probably….. 🙂

    Reply
    • Kristie Hill says

      November 22, 2014 at 11:36 pm

      I actually have a post about using content boxes or block quotes for Twitter boxes coming up this week! Can’t wait to see how you use them.

      Reply
  24. Tori says

    November 22, 2014 at 11:25 am

    Thank you for posting this! I get so lost when it comes to changing things and making sure I don’t mess up all the codes, so thank you for providing the information detail for detail!

    Reply
    • Kristie Hill says

      November 22, 2014 at 1:51 pm

      You got this! Let me know if you need any help. Let me know when you’ve added them to your blog!

      Reply
  25. Maritza says

    November 22, 2014 at 6:23 am

    I’m always looking for great little tips and tricks to enhance my blog. Thanks for sharing and the awesome details

    Reply
    • Kristie Hill says

      November 22, 2014 at 1:49 pm

      You’re welcome Maritza! My blog is full of great little tips and tricks for bloggers!

      Reply
  26. Jamie says

    November 21, 2014 at 2:55 pm

    Oh my goodness! Thank you for this post! I’ve been wanting to know how to do the content box!

    Reply
    • Kristie Hill says

      November 22, 2014 at 1:49 pm

      Your welcome! I’m glad it helped you, let me know when you use one in a blog post, I’d love to see it!

      Reply
  27. Anna says

    November 19, 2014 at 8:56 pm

    Kristie, this is a lovely post! The blockquote is usually one of my favourite things to play with, you can do so much with just a little bit of code to really mix things up!

    Reply
    • Kristie Hill says

      November 22, 2014 at 1:53 pm

      Thanks! I agree, small little adjustments really go a long way.

      Reply
  28. Skye says

    November 19, 2014 at 2:37 am

    Hi Kristie

    Thanks a lot for this step by step tutorial! This is very valuable to me as I don’t know coding at all and therefore I’m very limited. I do have one question as my WP Site dose have also a CSS Stylesheet Editor next to the Editor itself. This comes with my WP-Theme and I do have there already some codes from the designer of the Theme. May I just add your codes into this CSS Stylesheet Editor instead of the Editor? Because I think if there will be a Theme update it will overwrite everything. The CSS Stylesheet Editor stays the same way.
    Thanks for your Feedback.

    P.s. I already wrote one post but couldn’t see it here. So if this is because you have to open it up, then you will see two replies from me. Please just ignore one. Thanks.

    Reply
  29. Skye says

    November 19, 2014 at 2:31 am

    Hi Kristie

    Thank you so much for this step by step tutorial. As I don’t have any knowledge in coding and nobody I know who can help me I’m very limited in changing my design. Now you gave me some tools which I really very appreciate. I do have one question regarding adding the code. I do have WP but under Apperance I do have also a point called CSS Stylesheet Editor. (In addition to the Editor. I do have in this CSS Stylesheet already the following codes which I received from the designer of my WP-Theme:

    .entry-author, .list-authors {
    display: none !important;
    }

    .flexslider .entry-date,
    .flexslider .entry-author {
    display: none !important;
    }

    @media screen and (min-width: 1000px) {
    #site-title {
    width: 100% !important;
    }
    }

    Now, may I just add your codes in this CSS Stylesheet or do I have to go into Editor itself and change it? I think if there will be an update then it will overwrite again this codes.

    Thanks for your help.

    Reply
    • Kristie Hill says

      November 19, 2014 at 10:13 am

      Hi Skye! I have not personally used a stylesheet editor, but it sounds like it is a perfect spot to put the CSS for your quotes and content boxes. If you want to send me an email with your URL, I can take a look at it for you!

      Reply
  30. Sandy says

    November 18, 2014 at 8:45 pm

    Hi Kristie, very detailed instructions here. I have always been looking for adding some colours and style to my ‘quotes’. Shall try out those codes you gave above. Just a question, can I put these codes in the post ‘TEXT’ instead of the CSS stylesheet?

    Thanks again for this very valuable post. Thanks Marianne for sharing too 🙂

    To your Abundance, Sandy 🙂

    Reply
    • Kristie Hill says

      November 19, 2014 at 10:08 am

      Hi, the CSS for the quotes needs to go in the stylesheet. This will make it easy for your to us in the text section of your posts. Good luck, let me know if you have any other questions.

      Reply
  31. Erika Madden says

    November 18, 2014 at 12:13 pm

    What an excellent post. So useful! I especially like the content boxes. I may try that. 🙂 Thank you for this, it’s awesome!

    Reply
    • Kristie Hill says

      November 18, 2014 at 1:13 pm

      Oooh! Can’t wait to see how you use content boxes! Thanks for stopping by Erika!

      Reply
  32. Thyeme Figueiredo says

    November 18, 2014 at 11:42 am

    Thank you for this post! And this tour! I am thinking in some new changes to my blog for 2015 and the post helped me pretty much <3

    Reply
    • Kristie Hill says

      November 18, 2014 at 1:14 pm

      The new year is a great time for blog changes. I’m glad this post helped you!

      Reply
  33. Elizabeth T says

    November 18, 2014 at 10:37 am

    This is such a great tutorial–I’ve wanted to learn how to add content boxes to my posts for awhile. Thanks!!

    Reply
    • Kristie Hill says

      November 18, 2014 at 1:14 pm

      Let me know when you add and use them, I want to see! Good luck!

      Reply
  34. christei says

    November 18, 2014 at 9:45 am

    That was a lot of work on your part to show others how to improve their blogs! Great work!!

    Reply
    • Kristie Hill says

      November 18, 2014 at 1:15 pm

      Thank you, that means a lot to me!

      Reply
  35. Ange @ Cowgirl Runs says

    November 18, 2014 at 8:45 am

    I’m so happy to have found this!

    I never knew I could makes this changes, or, more specifically HOW to make these changes. Yay!

    Reply
    • Kristie Hill says

      November 18, 2014 at 1:15 pm

      This comment made my day. I’m glad you found the tutorial useful and hopefully it will help you make changes to your blog!

      Reply
  36. Marianne says

    November 18, 2014 at 7:01 am

    Aww i am so honored that i was a motivator for you Kristie! And so glad we share the same goals too 🙂

    Great post, i love using both content boxes and blockquotes, though I could stand to use the latter more often. I love how you provide a couple of different code examples too to make it easy, brilliant!

    Thanks for being a part of the tour!!

    Reply

Trackbacks

  1. WordCamp Seattle — blog ambitions says:
    October 2, 2015 at 2:01 am

    […] do when it comes to HTLM. It will help you immensely in the long run. Knowing code can help you put content boxes or quote boxes into your blog posts. Or put your super long Pinterest perfect image in the post without it actually showing […]

    Reply
  2. 10 tips for writing a perfect blog post every time. — blog ambitions says:
    April 2, 2015 at 1:01 am

    […] be much shorter. Other ways are to break up your text are to headings, number or bullet lists, quote boxes, and content boxes (you’ve seen most of these inside this article) Bonus: using headlines improves your on page […]

    Reply
  3. 5 Common Design Mistakes Bloggers Make (with Fixes) | Design Your Own (lovely) Blog says:
    November 19, 2014 at 1:29 am

    […] sure to check out yesterday’s post by Kristie Hill on Making Your Blog Content Pop with Blockquotes and Content Boxes. And then Kate Brooke wraps up the tour tomorrow, so be sure to stop by and support […]

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Hey there, blogger! I'm here to help blog owners like yourself rock their online presence with a solid blogging foundation. We're on the up hill climb around here. :)

Looking for something?

  • Facebook
  • Instagram
  • Pinterest
  • Twitter

The Successful Blogger Plan

Can I send you a present? And by present I mean homework to help you create the biggest, the loudest blog ever. Or at least one that helps you reach your goals. You’ll also get regular emails from me to help you build + grow your blog business.

Kristie Hill - Speaker at BAM Success Summit
Kristie Hill = Speaker at Tastemaker Conference

Wahoo! You made it to the bottom of the page, you deserve a treat. Have a cookie!

ABOUT KRISTIE HILL | CONTACT | HOME | BLOG | PRIVACY POLICY Copyright 2017