WordPress Fun Mix

Here we offer you some tutorials on how to customize your WP.Fun Mix theme as well as a download

  Download WordPress.Fun MiX (1 MiB, 514 hits)

Preview WordPress.Fun MiX

How can i remove thumbnail image from the index page?

Open index.php file, delete or comment lines 7,8 and 9.
Line 7 should look like:

<div class="entry">

now, edit the class to “entry-long” so it looks like

<div class="entry-long">

You can also edit

<?php the_excerpt(); ?>

for

<?php the_content('More'); ?>

but then you would have to delete line 10, so you dont get 2 “More” links.
How do i edit the logo and text in it?
Theres a file in the “images” folder called “logo.psd” this is the header source file, and after editing save it as “logo.jpg”.

How do i make new headers for the sidebar?

See this image for a basic guide. Also download the style files.
After having your background image go to theme editor from you wordpress admin panel. Select style.css and at the end add this code:

.sidebar .green h2.discussed2 {
	background:url(images/discussed2.gif) no-repeat top center;
}

This example is for green container. Dont forget to replace img for the name of your image.

Now you would wonder how to use your brand new background image in the sidebar. Thats easy open sidebar.php add this after line 19

<div class="green padded">
	<h2 class="img">Blogroll</h2>
	<ul>
		<?php wp_list_bookmarks('title_li=&categorize=0&category=2&before=<li>&after=</li>&show_images=1&show_description=0&orderby=name'); ?>
	</ul>
</div>

Once again edit the class name, wich is “img” right now. To the one you have added to style.css file.