Sleek Bluey
Posted by Snap! on July 12th, 2007

This is probably one of the simplest and (pleasantly) refreshing theme by AskGraphics. The theme is bright with rounded edges (typical of most of his work) that adds to the aesthetics and really makes for a good overall blog theme. The codes are a little rough in spots but there are simple fixes that are added in the comments (scroll down). If you are looking for a theme that focuses on it’s content and not overwhelm the viewer with its imagery, this one is just right!



July 12th, 2007 at 11:57 am
Bug fix(es): Please note the bug was found in the version we downloaded, it might have been corrected since.
The theme on activation has a err pointing to the function.php file, on examination it was found that the fix involves slight changes to the header.php file and the syle.css files.
Start with header.php (open in notepad) and look for this this:
<div><a href="<?php bloginfo('home'); ?>">Home</a></div> <?php wp_list_pages2(); ?>Replace it with:
<ul> <div><li><a href="<?php bloginfo('home'); ?>">Home</a></li></div> <div><?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?></div></ul>Next, open style.css and find this:
#menu{
padding-left:30px;
}
Add the following right below it:
#menu ul{
list-style: none;
}
That should do it.