Skip navigation

Designing a WordPress Theme - Building a Sandbox

Articles on Web Design and CSS

A WordPress Theme sandbox, in coding terms, is little different from a child’s sandbox. It’s a place to experiment with construction, building sand castles and great fortresses. With a CSS Sandbox for WordPress Themes, you are creating a single page with all the styling details that make up a typical page on your WordPress site, and then playing with it to build your own sand castles or fortresses.

WordPress is browser controlled and generated on the web. So the time you spend tweaking the styles here and there, you must be connected to the Internet and constantly uploading the new style.css style sheet to your Theme’s folder, eating up bandwidth and Internet access. Also, because your site might be public, every small change is witnessed by visitors, and you might want to make some drastic changes through the testing process.

By making a sandbox test page, you can use it on your hard drive disconnected from the Internet, and play to your heart’s content.

The process is actually very simple. If your WordPress site is new, make sure you have at least three posts entered. They don’t have to be eloquent, just have some content in them along with an image or two and put them in at least one category. From there, the instructions are:

  1. Generate the page view you want to edit. I recommend you start with a single post view of your site, so click the title of a post to see the single post view.
  2. From the browser menu, choose File > Save As or something similar. Give the file a simple name like test.html and save it to its own folder on your computer.
  3. Copy the style.css from your Theme folder into the same test folder.
  4. Copy all the images you want to use in your Theme such as bullet graphics, artwork, photographs, and other images into that same test folder or in a subfolder within it such as /images.
  5. Using a text only editor, not a word processor, open or edit the test.html file.
  6. Go through the head of the HTML file and look for a reference to the style.css. Delete all website and folder URL address parts to the style sheet link so it only shows style.css.
  7. With the text editor, go through the HTML file and change all references to images in that file to the new location or remove the old location address.
  8. Open the style.css and also change or remove all folder references to all the images within the style sheet. Do not remove the image links, just the folder references.
  9. Save both files.
  10. Using your browser menu, choose File > Open and open the new test.html file and you should see your site, for the most part.
  11. If any graphics or images are missing, check again to see that the links to those are set to the new folder and that the images are in the folder.
  12. Now it’s time to start playing in your sandbox.

Content For Your WordPress Theme Sandbox

To really play with your new WordPress Theme Sandbox, you will need the following:

  1. Download the Firefox Internet Browser (You can still keep IE, just get this free Internet browser now!)
  2. Get and install the two free add-on Extensions for Firefox: Edit CSS and Web Development Tools.

That’s it. You now have a free, and very powerful, HTML WYSIWYG web editor at your fingertips. All built into Firefox.

To use them, close and reopen Firefox and reload your sandbox test page. Click on EDIT CSS from the toolbar and your CSS file will appear in a sidebar. Look for #header, usually towards the top, and type in the following at the front of the first bracket:

#header {border:solid red 4px; ...}

You should instantly see a red border appear around your header. WOW!

Most every change you make in that CSS file will appear on the page so you can edit the style sheet and see the effect as you go. When you are totally happy with the look and you are ready for full testing, copy the file and replace the old one in your style.css file with the new one, save it, and reload the page. Looks great? Then keep going until it looks like what you want.

Now, all you need is test data.

The test data should include all the HTML/XHTML and CSS styles you will use within your WordPress site and Theme. You can use the following as your test post data.

  1. While viewing this page on our site in your browser, look at the source code (VIEW > SOURCE).
  2. Between the sections on this page that say COPY FROM HERE to STOP COPYING, copy it.
  3. Open the test.html with a text editor and delete your test post section where the post content begins below the title and post content CSS tags. It ends on a </div>, above the navigation, comments, sidebar and footer. Do not remove the </div> or anything below it.
  4. Paste in the new post test data.
  5. Go through it carefully and add or make any changes to match your styles and CSS needs.
  6. Save the HTML text file and refresh your browser window with that page.

<– COPY FROM HERE –>

This is the H1 Heading

Inside of this test data section, you need to recreate the core HTML and XHTML and CSS styles that you will use within your WordPress Theme. For instance, above is the heading for the H1 HTML tag, which might contain a graphic in some Themes, or actually control the size of the font and text within your header. You need to know what that will look like as part of structuring your styles.

This is the H2 Heading

While WordPress assigns the H1 and H2 headings to specific places, such as the header and post title, not always are they in the same places. For your Theme, the H2 might be the post title, or it might be used in the sidebar for the section titles, and the H3 is used for the post title. You need to know what each looks like and identify it on your Theme and layout.

Look at how the heading is styled, but also look at the space around it. It might have a huge amount of margin or padding above or below, background colors, and other effects. If you want them for that heading, fine, but if not, change them.

This is the H3 Heading

Again, is this the same heading as is in your post title or is this the section headings found within your sidebar? Or is it different? If so, you can use this, or the one below, the H4, for section headings within your post to divide up topics.

This is the H4 Heading

In this section under the H4 heading, we’re going to look at what the post content, the meat and potatoes of your site looks like. In general, you will have multiple paragraphs, so we will add another paragraph so you can adjust the spacing in between them to the look you want.

Paragraphs are not just for typing your blog babble, they can also hold frame and hold other information within your content area to help make the point you want to make in your writing. For instance, you will commonly have three types of lists.

  • General Lists using the <ul> tag
  • Ordered Lists using the <ol> tag
  • Definition Lists using the <dl> tag
    • Definition Lists use two other tags to generate the list:

      • <dt> sets up the word or phrase to be “defined”, usually set in bold, and
      • <dd> sets up the definition, which is usually in a normal or slightly smaller font and indented under the definition.
  • And that’s the end of the lists

And we’ve just tested a paragraph before and after a general list along with a nested list to help you see what at least three levels of the list will look like. Make sure that each level of the list is styled to match your specific needs. You might want to use the default disc or circle, or you might want to add graphic bullets to your list, too.

This is the H5 Heading

While the H5 heading is not always used, maybe you might find a need for it if your H1 and H2 and H3 headings are used. You might need one to two levels of subheadings in your post content, so this one gives you another option.

We also need to look at the other two lists and then add some images and other styles to flesh out your WordPress Theme sandbox.

  1. You need to do this first.
  2. You need to do this second.
    • You could do this in between.
    • Or give this a try, too.
  3. But this is the third and last thing to do.

This should give you an idea of how a nested number list would look on your site. Now, let’s look at a definition list.

WordPress Themes
A WordPress Theme is not a “skin”. Though many young people call it one. The reality is that a WordPress Theme contains many files that come together in various ways to generate a WordPress web page. A “skin” simply changes the look, and rarely the results.
WordPress Plugins
WordPress Plugins add flexibility, features, and capabilities to your WordPress site. There are hundreds to choose from. Some add power and control like monitoring and busting comment spam and enhancing your administration features. Others add fun things like random elements and polling and rating systems.

And here is another paragraph to show the relationship between the various parts and pieces.

This is the H3 Heading

Daisy, photograph Copyright Brent VanFossenIf the H3 heading is your in-post section heading, then you need to see how it works within the post itself. If it isn’t, simply change the H3 to whatever heading number you are using.

Daisy, photograph Copyright Brent VanFossenWe need to look at how images, another major feature of most WordPress sites, are used within the site. Images tend to sit on the left, right, or middle of your post, depending upon how you are using them. For an image sitting on the left or right, you need to add appropriate padding around the image on the text side to push the text away from the image so the text won’t push up against the edges of the image.

Daisy, photograph Copyright Brent VanFossen

A centered image is a little different. It is centered in the middle and the text is pushed above and below it. NOTE: Currently, the Theme used here doesn’t feature “right” or “left” or “centered” styles. It uses the CSS deprecated “align”. Please change the code here from align to class so your site will validate and you will have much more control over image placement.

How to add the CSS styles for images is discussed in the Codex article, Using Images.

Testing Font Looks - H3 Heading

You will need to test the looks of the different font styles, too. This is bold and THIS IS BOLD. This is italic and THIS IS ITALIC. This is bold and italic and THIS IS BOLD AND ITALIC. This is code and THIS IS CODE. And now let’s look at what the PRE tag, also known as the preformatted tag, looks like:

This is the pre tag.
It should be formatted as written
     so if you add spaces to the front of the line
  it will show the spaces and the <code> as written

This should be back to the normal paragraph style and we hope you have been paying attention to the margins and padding around each element, including the paragraph, so you can position things appropriately to the rest of the content.

Your CSS Here - H3 Heading

Let’s look at the blockquote, one of the most common tags used in most blogs. It is designed to “frame” a quote from another blog, website, or reference that you are “quoting” from. For the most part, there are three examples of usage:

This is a simple quote. It is either preceded or followed by a link within the text to the credited source. A blockquote must be designed to stand out from the rest of the text content, but it does not have to “really” stand out, just separate itself from the content so we know it’s not your words.

A second style to the blockquote is one that includes a citation. Under HTML guidelines, this citation should be wrapped in the <cite> tag and then that tag can be styled to be in italics, bold, or whatever look you want in your design.

Take care with the style of the <cite> tag as some WordPress Themes use it in the comments area. I recommend you style it specifically withblockquote cite {style declarations} in your stylesheet.

This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a blockquote.
Lorelle on WordPress, your guide to all things WordPress and blogging

The citation includes a link and text to help you see what a link and text will look like within the cite tag.

There are many tags that can be found within a blockquote, just as can be found within any container within your web page design, but a last example includes an unordered list. Many bloggers love to quote examples from lists, so this is a good tag series to test.

Within this web design sandbox test page, we’ve tested:

  • Headings
  • Text styles like bold and italic
  • Ordered (numbered) and unordered (bullets) lists
  • Links
  • Code and PRE tags
  • Blockquotes
  • And much more…

Which should show you what a list looks like within a blockquote.

Each website is unique with it’s own look and feel for the various parts and pieces. This cut and paste section looks only at what you might have within your content section. So if you will have boxes for lists or little aside information, you will need to add them so you can see how they will look in the overall page layout.

Some elements in a WordPress Theme are controlled by the style sheet, while others are controlled by the Template files. Try to work on as much as you can from the style sheet first, then you can mess with the template files.

Remember, any changes you make to the style sheet and template files will be not available if you change themes. If you want them carried over, you will need to copy and paste them into the new Theme folder.

As a last element in the content area and throughout your site, check the hypertext links. These are the links to external websites and/or internal pages within your site. They come in three flavors: active, visited, and hover. Make sure you work on the styles for each of these.

<– STOP COPYING HERE –>

Your Turn to Play in the Sandbox

Now, it’s your turn to play in the WordPress Theme Sandbox.

If you use tables or want boxes for a form of in-post sidebars or pullquotes, or to use other HTML tags within your blog posts, add those to the Sandbox so you can test drive those design elements.

If you need help with this, leave a comment below and I’ll try to answer your question. Remember, there is a ton of information on styling and designing your WordPress Theme and layout, and here are some links to help:

Member of the 9Rules Blogging Network


Site Search Tags: , , , , , , , , , , , , , , , , , , , ,
Feed on Lorelle on WordPress Subscribe Feedburner iconVia Feedburner Subscribe by Email

Copyright Lorelle VanFossen, member of the 9Rules Network, and author of Blogging Tips, What Bloggers Won't Tell You About Blogging.

33 Comments

  1. Posted January 8, 2006 at 2:19 pm | Permalink

    It has been brought to my attention that <blockquote> is missing from the test layout. Please add it, if you use blockquotes. And add any other HTML tags you would normally use.

  2. Posted March 11, 2006 at 2:59 pm | Permalink

    For anyone who would like to take the “sandbox” idea a little bit further, I would recommend installing wordpress locally on Windows, and have a fully functioning WP version without worrying for bandwidth etc. Here’s a tutorial for that:http://www.tamba2.org.uk/wordpress/xampp/ .

    However Lorelle, I should thank you for this post because I design and tweak themes all the time and this list of HTML tags really help to make sure it all works well.

  3. Posted March 11, 2006 at 3:19 pm | Permalink

    Todah, Sarit. ;-)

    There are several tutorials on installing WordPress locally or in a separate directory on your site for testing purposes. All are found on the WordPress Codex.

    Test Driving WordPress
    Moving WordPress
    Giving WordPress Its Own Directory

  4. Posted March 17, 2006 at 6:47 pm | Permalink

    Hi,
    Just wanted to thank you for this post.
    I’ve been blogging for a while now, all this time painfully aware my site is butt-ugly.
    I decided to redesign it - And found this post which has everything I was looking for.

    Thanks!

  5. Posted March 17, 2006 at 6:54 pm | Permalink

    Glad to help, and remember that blockquote and a few other tags are missing from this example. See this article for tips and resources to make sure your sandbox page has all the features you may, or may not, need for your Theme. Good luck and glad to help, Avi.

  6. Posted May 14, 2006 at 12:34 pm | Permalink

    Hi; i was wondering,… and i know that this is a lot to ask but im taking a chance with asking anyway… lol; Seen as you are brilliant at all this and i dont have a clue; i was wondering if you would be able to compose a theme for me with the same logo, and menu bar at the top; thats it. And the rest just white text, white underlined hyperlinks and black background. Then i could trym hence try do the rest of it…

    Im guessing it would only take you like 5 mins to do this but im just… rubbish at things like this.

    Please help,
    Thanks,
    Dave

  7. Posted May 14, 2006 at 1:28 pm | Permalink

    Sorry. While this sounds nasty, you can’t afford me. ;-)

    I really recommend that you find a WordPress Theme close to what you want and then dig in. Or ask one of those groups I recommend as sources for finding web designers for WordPress on my WordPress Resources page, under WordPress Web Designers to help you. On the same page you will find a lot of step by step instructions on how to create your own Theme, as you will also find on my Site Map. It isn’t hard to do what you want, and these easy instructions should help.

    And honestly, even the lightest weight design doesn’t take 5 minutes. A professional takes a lot more time to make sure everything is right. While you can change the look of a site within a few minutes, it needs to be tested and checked in different browsers and then all those little nitpicky things come up that need to be adjusted and tweaked…it takes time.

    I am traveling right now extensively, so even if I wanted to do this for you, for a fee, the soonest I could consider it would be August or September at the earliest. I’m sure you don’t want to wait that long. ;-)

  8. Posted June 12, 2006 at 1:31 pm | Permalink

    Googling ’sandbox theme wordpress’, and guess who comes out on top: Lorelle - the very one and only Lorelle I’ve been reading ever since I made up my mind about starting a blog of my own ! You’re amazing - and your advice on how to make a sandbox is just what I needed.

    Thumbs- (and keep-) up

    PS: however, it seems Google is better at finding the right post than your own wordpress search tool.

  9. Posted June 12, 2006 at 10:51 pm | Permalink

    Thanks for the kind words. And unfortunately, the WordPress search function, especially with this particular WordPress Theme, in a word: sucks. This is why I put so much energy into my Site Map. You can always check there and in the sidebar for a better “table of contents” which are categorized by topics to help you find your way throughout all the stuff I’ve written.

    Thanks! I really needed to hear kind words today.

  10. Posted August 6, 2006 at 11:50 pm | Permalink

    The Edit CSS feature in Firefox is really a time-saver. Even when I run WordPress locally, I always play with CSS from within Firefox. Though I have a nasty habit of suddenly navigating away before I’ve saved my changes. Sigh. I need to learn how to work effectively.

  11. Posted August 9, 2006 at 9:58 am | Permalink

    Lorelle:

    I’m trying to follow this…

    Copy the style.css from your Theme folder into the same test folder.

    Where do I find my Theme Folder????? On MY hard drive???
    Or do I go to Presentation, then CSS Edit and copy THAT???

    Thanks…JJ

  12. Posted August 9, 2006 at 11:16 am | Permalink

    As discussed on the WordPress.com support forum, you can copy the styles from one WordPress Theme and use them as a template for creating a custom Theme using a combination of the paid upgrade WordPress.com CSS Editor and the Sandbox Theme with NO CSS styles.

    Using Firefox and the Web Developer Edit CSS Firefox Extension, view the CSS on any WordPress Theme. Copy the CSS into a text editor.

    With extensive familiarity with web page design and CSS, download and copy and paste all the All The Styles for the Sandbox Theme into another page in your text editor and start sweating.

    Go through every line and replace the styles in the copied Theme stylesheet with the appropriate and matching selectors (style references) in the Sandbox Theme. They will not match, so you have to change them. When they are changed, and you’ve run some tests to make sure, which this article describes, then copy and paste the new revised CSS into the CSS Editor and you will have the same WordPress Theme design, with your own variations.

    I will be soon publishing, here and on the Codex, instructions on how to use the CSS Editor and all the customization features we can think of. Be patient. This is exciting, but also very frustrating as it is not for the timid or basic web page designer. Hardly for the intermediate level web page designer sometimes. I’ve been doing this for over a decade and I’m still trying to figure out what goes where.

    For simple things, just change the second to make it look like what you want and leave the rest as it is.

  13. Posted August 11, 2006 at 3:43 am | Permalink

    hi lorelle,

    instead of using original firefox with extensions, there is also
    another mozilla engine browser called seamonkey
    ( http://www.mozilla.org/projects/seamonkey/ )
    with an editor built in.

  14. Posted November 24, 2006 at 1:15 am | Permalink

    You’re on Digg (good job!), so you might want to fix some outbound links.

    This sentence is completely knarled up:

    “Get and install the two free add-on Extensions for Firefox: Edit CSS and Web Development Tools.”

    Correct link for Edit CSS:

    http://editcss.mozdev.org/

    Correct link for Web Dev Tools:

    https://addons.mozilla.org/firefox/60/

    You added the last URL to Edit CSS in your HTML.

    While doing a Google search for the right links, I found another fabulous looking program for editing your website:

    http://www.sitevista.com/cssvista/

    From their homepage:

    “CSSVista is a free Windows application for web developers which lets you edit your CSS code live in both Internet Explorer AND Firefox simultaneously.”

    Have fun!

  15. Posted November 24, 2006 at 6:17 am | Permalink

    I don’t think worrying about bandwidth is an issue. Looking at one video on YouTube would use as much bandwidth as modifying a few CSS files while you’re testing stuff out.

  16. Posted January 11, 2007 at 2:15 am | Permalink

    you are right, “not every WordPress Theme is easy to work with”!

  17. Posted February 6, 2007 at 6:35 am | Permalink

    Great tutorial, I’m having masses of fun with my sandbox. With regard to the centered image; how do you center it without the use of a div element? I’ve gone with setting the left padding to 40% but am concerned that this may cause problems later on. Also this wouldn’t work with images of different sizes.

  18. Posted February 6, 2007 at 7:54 am | Permalink

    You’re right, this does make things a mess. I rarely use centered for my images. I want them to sit between paragraphs or on the right or the left. However, this is what I’ve come up with:

    img.centered { display: block; margin-left: auto; margin-right: auto; }

    The image tag would be:

    <img class="centered" src="/images/pic.gif"...

    You can also try the suggestions found in Brunildo’s CSS Tests on Centering and W3C.org’s HTML centering of images.

  19. livingauthentically
    Posted April 24, 2007 at 6:56 pm | Permalink

    Thanks a million for this. I haven’t been able to find a theme that I like, so I am starting with the “sandbox” theme and customising it. Your tutorial has helped me a great deal!

  20. Posted May 13, 2007 at 3:58 am | Permalink

    Great tip. You were right at the top of my search. I’ll use this on Monday.

    Great seeing you at SOBCon.

  21. Posted May 13, 2007 at 8:03 am | Permalink

    Ah, shucks, Jesse, you were incredible at the conference, blogging away for everyone. Great work. I’m looking forward to reading your live blogs! It was great to meet you.

  22. Posted May 22, 2007 at 7:46 pm | Permalink

    Hi Lorelle!
    I’m just diving into WordPress and I need to modify a theme to include my banner graphic and maybe some images in the sidebar. I was going thru the Sandbox Method and all was well until it came time to:
    ‘Click on EDIT CSS from the toolbar and your CSS file will appear in a sidebar. Look for #header, usually towards the top, and type in the following at the front of the first bracket’

    My CSS sidebar was empty. Is this because the theme I chose is not editable? Do I have to upgrade to the full version of WordPress to modify ANY theme, or does it just give me more flexibility?

    Or I might have broken the Style sheet because I wasn’t sure where/how to cut out the image url references…mine look like this:

    .header {
    background-image:;
    height:75px;
    width:739px;
    padding:55px 0 0 30px;
    }

    I was thinking that would allow me to place images later, or it would be covered in the section of the tutorial “Copy Here”.

    So how deep in the weeds am I Lorelle?

    Thanks for all that you do on this wonderful site!

  23. Posted May 22, 2007 at 9:06 pm | Permalink

    I assume you are talking about using the Firefox Web Developer Extension, right? That’s where you can edit the CSS you see on the screen, but you are not editing your actual stylesheet. You understand that, right? You then copy the changes you’ve made as you see them on the page to your stylesheet, replacing the “old” styles you’ve changed.

    A WordPress Theme can have multiple stylesheets depending upon how it is styled and the Plugins it uses. At the top of the Edit CSS sidebar panel, there are “tabs” for the different stylesheets. If the stylesheet isn’t properly named or the styles are embedded within the web page you are viewing, you may see a tiny blank tab behind the others.

    It also looks like you want to change the header art. If the Theme is based upon the Default/Kubrick design, follow the instructions in the WordPress Codex article on Designing Headers, since it may involve a series of steps to get the header changed.

  24. Posted May 23, 2007 at 10:29 am | Permalink

    Hi Lorelle!
    Yes, I should have said: I am using Firefox with the Web Developer Tools, and I’m working locally with WordPress. The theme that I started with is called Webplus 1.0, and actually the Header was the one thing that did work. My CSS tab was empty and the imbedded styles tab behind it just had: ‘#page { background: url(”") repeat-y top; border: none; }’
    My WordPress page looked like it had no style applied at all (but the Header image loaded properly), so I’m thinking the CSS style sheet is not being referenced somehow (it is in the folder with my test page).

    Whew! I go one day from feeling like I can do this, to the next day wanting to hire someone who does this stuff every day. I did look at your list of web designers and first link to Laughing Squid should be updated to this: http://laughingsquid.net/web-designers/
    The second link is broken. The third was a little scary because I wasn’t sure to what I was subscribing.
    I also posted my WordPress site design as a job on Elance a week and a half ago, but didn’t get any bids. Is that because WordPress is free and too easy to make money with, or is there some bias against it in the “pro web design” world?

    Thanks again for the advice!

  25. Posted May 23, 2007 at 2:20 pm | Permalink

    A lot of people think this web design stuff is easy. You are learning the real truth, aren’t you. Thanks for the update on Laughing Squid, and you should also know that the best list is now Automattic’s WordPress Consultants for finding the professionals who will help you.

  26. Posted May 24, 2007 at 1:58 pm | Permalink

    Thanks for the new list of WordPress designers, Lorelle.
    No, I never thought that web design was easy. I’m one of those people that thought it was magic! But now I think with a little help, I’ll be able to come up with something I’ll really like.

    Onward and upward!

  27. Posted June 22, 2007 at 1:04 pm | Permalink

    Thanks so much for the tutorial, Lorelle. And EEEEEK! I’m stuck at instruction number 10.

    I open my sandbox test.html page in my web browser and find that it has changed the typeface from san serif to serif. All type displays as san serif online. All type displays as serif in my sandbox. Other than that, the sandbox appears to like the stylesheet.

    The stylesheet says:

    `body {
    background:#fff;
    margin:15px 0;
    padding:0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    color:black;
    }`

    My mother TRIED to raise a good boy, but clearly I’ve gone wrong somehow somewhere along the way.

    Any ideas about what I need to fix?

    Thanks.

  28. Posted June 22, 2007 at 11:52 pm | Permalink

    First, there is no font-size for “small”. There is a small HTML tag, but you can’t have a small font. You have to be specific. I use 1 em in the body style and then scale everything from there with percentages. Works wonderfully.

    Second…I don’t think there is a second. That should fix your problem.

  29. justmarketing
    Posted July 13, 2007 at 8:52 am | Permalink

    Hi Lorelle. Just tried the link to the web developer toolbar. looks like they’ve moved it to http://www.webaim.org/resources/webdev/ rather than where the link points.
    M

  30. Posted August 14, 2007 at 2:27 pm | Permalink

    Kick ass! I’ve been busy redesigning a simple site for a friend. So far he has been using pure HTML and JS - sooo 2002, I know - so I wanted to use WP as a CMS, and this whole “not having to upload every minor revision” thing will save me a butt load of hassle - especially since the transition to a new host hasn’t been completed yet. Thanks!

  31. dhishoom
    Posted September 6, 2007 at 11:19 am | Permalink

    This is a well written manual. I should have some really cool themes coming up pretty soon.

  32. Posted February 10, 2008 at 3:24 pm | Permalink

    Gaah! Or, why didn’t I look for this two years ago… You don’t have a clue (or - maybe you do) how much easier you’ve made bloglife. I’m the kind of person that can’t keep my hands way from the code and for two years it’s been a lot of upload-reload-check-modify-upload… and so on.

    Maybe if I’ve had a little bit of patience and actually tried to learn first and do later when I started out coding, css-ing and blogging. maybe then I would have found you earlier.

    But now I have. Jippie!

    And - thanks
    Anna

  33. Posted July 14, 2008 at 4:50 am | Permalink

    Hi again Lorelle,

    I know this post is old - but just wanted to say thanks - it is proving VERY useful to me and stopping me from chewing my nails so much.

36 Trackbacks/Pingbacks

  1. [...] If you aren’t worried about bandwidth on your website or your Internet connection, you can style your site right on the Internet. If you are worried, then use the “Sandbox” method. [...]

  2. [...] Copied from Lorelle’s. [...]

  3. [...] Please, create a well-rounded sandbox or test post to put your WordPress Theme through a full set of test to see how all the different elements will look. [...]

  4. Using Firefox as an html editor

    Here’s a tip courtesy of Lorelle:

  5. [...] [3] Lorelle’s stylesheet sandbox method [...]

  6. [...] converting Gscape opensource template to a basic wordpress theme.  this template was created by Gururaj and was found here on OSWD.  As well as the wordpress codex I also used information from the following blogs -  AndrewStrojney.com,  Leon Kilat ::: The Cybercafe Experiments, UrbanGiraffe, and Lorelle on WordPress. [...]

  7. [...] כיצד תדעו האם באמת התאמתם את התבנית לשפה העברית ב-100%? האם לבלוגר שישתמש בתנית שלכם יצוצו פתאום הפתעות כשיגלה שהוא כותב רשימה לא ממוספרת שתיושר לו לשמאל, או שמשום מה התמונות שהוא מצרף לפוסט מכסות את הטקסט? השתמשו במה שלורל מכנה ארגז החול - קטע טקסט ארוך בעברית המכיל את האלמנטים החשובים ב-HTML, ובידקו האם התבנית מציגה אותם היטב. הכנתי ארגז חול במיוחד בשבילכם - ואני מזהירה אתכם מראש, ייתכן שהתבנית הנוכחית שלי לא תעמוד במבחן - אבל על מנת שתבינו את הרעיון, כך זה אמור להיראות: [...]

  8. [...] This template was created by Gururaj and was found here on OSWD.  As well as the wordpress codex I also used information from the following blogs -  AndrewStrojney.com,  Leon Kilat ::: The Cybercafe Experiments, UrbanGiraffe, and Lorelle on WordPress. [...]

  9. [...] Well after reading the docs on WordPress’s site and after getting a little confussed, I found this article that makes designing a WordPress theme a snap. I found this article very easy to follow and I also found this sandbox way of editing CSS is awesome! I will have to try this more in the future. Now I have to figure out what a Post slug and a various other things are. [...]

  10. [...] Designing a WordPress Theme - Building a Sandbox [...]

  11. [...] Moving up the ranks to more intense WordPress Theme building, I wrote “Designing a WordPress Theme - Building a Sandbox” and “Designing a WordPress Theme From Scratch” to help you build your WordPress Theme from the ground up. [...]

  12. [...] Not every WordPress Theme is easy to work with, no matter how minimalist it looks. Every WordPress Theme looks the same when you take away the stylesheet. So start with the structure you like, strip away the rest, and you have a seriously minimalist WordPress Theme to start your WordPress Theme design process. [...]

  13. [...] Designing a WordPress Theme - Building a Sandbox « Lorelle on WordPress (tags: wordpress design css tutorial webdesign sandbox tools) [...]

  14. [...] Designing a WordPress Theme - Building a Sandbox « Lorelle on WordPress [...]

  15. [...] Designing a WordPress Theme - Building a Sandbox [...]

  16. [...] lika Thu 1 Mar 2007 - Filed under: Grafik — Cat uttråkad längre! Nu har jag hittat en sida som förklarade ganska bra hur man kunde göra för att göra ett eget tema. Och jag tycker att jag [...]

  17. [...] more practical help in editing CSS you may want to look at an excellent article by Lorelle on building a sandbox for theme development. She describes a technique for speeding up the CSS editing process and ensuring all elements are [...]

  18. [...] Designing a WordPress Theme - Building a Sandbox [...]

  19. [...] database. When I tried that, I ended up with a big headache. Alternatively, you could use the sandbox method, which is also very [...]

  20. [...] Designing a WordPress Theme - Building a Sandbox [...]

  21. [...] VanFossen of Lorelle on WordPress for pointing me to the Web Developer plugin in her article “Designing a WordPress Theme - Building a Sandbox“. If you would like more information about the technique I just shared, her article is a [...]

  22. [...] VanFossen of Lorelle on WordPress for pointing me to the Web Developer plugin in her article “Designing a WordPress Theme - Building a Sandbox“. If you would like more information about the technique I just shared, her article is a [...]

  23. [...] WordPress Sandbox [...]

  24. [...] VanFossen of Lorelle on WordPress for pointing me to the Web Developer plugin in her article “Designing a WordPress Theme - Building a Sandbox“. If you would like more information about the technique I just shared, her article is a great [...]

  25. [...] declarations} in your stylesheet. This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a [...]

  26. [...] Designing a WordPress Theme - Building a Sandbox « Lorelle on WordPress posted by admin at 7:22 pm   [...]

  27. [...] declarations} in your stylesheet. This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a blockquote. Lorelle on WordPress, your guide to [...]

  28. [...] declarations} in your stylesheet. This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a blockquote. Lorelle on WordPress, your guide to [...]

  29. [...] declarations} in your stylesheet. This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a blockquote. Lorelle on WordPress, your guide to [...]

  30. [...] Designing a WordPress Theme - Building a Sandbox [...]

  31. [...] declarations} in your stylesheet. This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a blockquote. Lorelle on WordPress, your guide to [...]

  32. [...] A WordPress Theme sandbox, in coding terms, is little different from a child’s sandbox. It’s a place to experiment with construction, building sand castles and great fortresses. More Blog Resources [...]

  33. [...] And “Building a Sandbox” [...]

  34. [...] declarations} in your stylesheet. This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a [...]

  35. [...] declarations} in your stylesheet. This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a blockquote. Lorelle on WordPress, your guide to [...]

  36. [...] declarations} in your stylesheet. This is an example of a blockquote which also contains a link to Designing a WordPress Theme - Building a SandBox to help you see what links will look link within a [...]

Post a Comment

Your email is never published nor shared.