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.
- Definition Lists use two other tags to generate the list:
- 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.
Leave a Reply