Find the following code from index.php:
1 2 3 4 5 |
/* Start the Loop */
while (have_posts()) {
the_post();
get_template_part('content', get_post_format());
}
|
Introducing a brand new WordPress Thesis Theme for 2012 I specifically created for the Frugal Blogger. This two column custom theme has 4 built-in widgetized areas in the header and footer. Other built-in widget areas make switching out ads a breeze (Above content, below content, after posts, after 1st post only, after 2nd post only, after 3rd post only, below footer). Click HERE for the live demo. Email me for purchase instructions. Includes theme installation.

If you find yourself in a situation where two images are overlapping each other, but the one you want on top is currently on the bottom, add the following code in your CSS:
1 2 |
position: relative; z-index: 5; |
This code has to be applied to where both images are being called. For example, you would put z-index: 5; for the first one and z-index: 4; for the second image. The higher z-index number will be on top. This works great for overlaying transparent images over banners and such.

