Theme Author: Bytes For All
Added: Friday, January 04, 2008 18:03
Columns: 3
Color: White
Widget Ready: Yes
License: Creative Commons Share Alike
Fluid 3 column theme with changeable header and logo image. Widget ready, valid XHTML, browser-safe, with options page, optional two tier navigation for pages, and auto SEO options. Optimized for WP 2.3 but works on 2.2 and 2.1 as well.
Related posts:
Related posts brought to you by Yet Another Related Posts Plugin.
I love the look of this theme, and I would have given it 5 stars… But I only gave it 4 stars, because of the hassle I had to go through finding and changing the snippet of code that prevents text from wrapping properly around images in posts! (Seriously, I don’t understand why the author would want to override the default WordPress text wrapping behavior. Unless this worked properly in v2.3 but was changed in v2.7 – which is the version I’m using now.)
So for those interested, I can save you a lot of time… Here’s what to do in style.css:
.entry p {clear:both} /***note: REMOVE {clear:both}***/
Then add this WordPress text wrapping section to the end of the file…
/***************** WordPress text wrapping *****************/
img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}
img.right { padding: 4px; margin: 0 0 2px 7px; display: inline; }
img.left { padding: 4px; margin: 0 7px 2px 0; display: inline; }
.right { float: right; }
.left { float: left; }
.alignright { float: right; }
.alignleft { float: left; }
img.centered { display: block; margin-left: auto; margin-right: auto; }