For webmasters who are using the Web2feel WordPress Epsilon Theme, you may notice that there are delays in loading time. This is actually due to 404 pages (non-existent) that were called during page load. I will show you how to fix it.
Here are a list of 404 pages/files:
- /wp-content/themes/epsilon/featlist.css
- /wp-content/themes/epsilon/minipost.css
- /wp-content/themes/epsilon/images/la.jpg
All you need to do is go to your theme editor, and edit your header.php file. Look for the followin code inside your <head></head> and delete it! You dont need it as these cascaded style sheets (CSS) are hard-coded with in the template.
<link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘template_directory’); ?>/minipost.css” media=”screen” />
<link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘template_directory’); ?>/featlist.css” media=”screen” />
Another Error:
When you open your page in internet explorer, you will see an error on page message in the lower left corner of your page. This is due to the missing la.jpg file, just open notepad and save an empty txt document as la.jpg. This will create a dummy file that will correct your code. Notice that page load has drastically improved after the fix stated above.
Image Alignment Issues:
As you may have noticed, all images are floated to the left. This is due to a global image style set to float to the left on your main style sheet. Here’s a fix.
Go to your theme editor and edito style.css. look for the code below and delete the text marked as red.
img {
float:left;
border:0;
margin: 0 0;
}
After doing the edit above, you will notice that your front page posts thumbnails are not floated on the left. All you have to do is manually add the the float style on your main index template. In your theme editor, edit index.php and look for the following code and add the line marked as green.
<img style=”float:left;” src=”<?php bloginfo(‘stylesheet_directory’); ?>/timthumb.php?src=<?php echo $gallery; ?>&h=100&w=120&zc=1″ alt=”"/>
Note, that these are just the bugs that I encountered while using the theme. If you have any other problems please do comment below and lets see what we can do.

