Vertigo Blue is a modern, 2 or 3-column Widget-ready theme created for WordPress.
2-Column Version
Live Demo | Download Now ↓
3-Column Version
Live Demo | Download Now ↓
Starbucks Addict Since 1974
Vertigo Blue is a modern, 2 or 3-column Widget-ready theme created for WordPress.
2-Column Version
Live Demo | Download Now ↓
3-Column Version
Live Demo | Download Now ↓
[...] came across this clean Wordpress design called Vertigo Blue Theme by Brian Gardner and liked it on the first [...]
[...] habe ich mich entschlossen, mein Theme zu erneuern. Dabei entschied ich mich für das Vertigo Blue Theme von Brian Gardner, übersetzte es, passte es an und finde, dass es ganz ordentlich geworden [...]
[...] Vertigo Blue Theme by Brian Gardner.Powered by WordPress. _uacct = “UA-1199272-2″; urchinTracker(); [...]
[...] I like, I’ve switched to a new theme, with some modifications by me. This one is called Vertigo Blue.  We’ll see if I can stick with this one for a [...]
[...] der Suche nach einem neuen Theme bin ich vielleicht bei Brian Gardner Vertigo Blue Theme fündig [...]
[...] Vertigo Blue WordPress Theme [...]
[...] at the same time I wanted a look that wasn’t too plain. I settled on a theme called the Vertigo Blue Theme by Brian Gardner. After some modifications and tweaks I think that it’s ready to [...]
[...] good friend Brian even got himself a mention in episode 3
His Vertigo theme is also used as the theme for the TalkingWordPress.com [...]
Interested in what I have to say?
Get it sent to your inbox…
I am a hopeless Starbucks addict, freelance designer and internet consultant living in the northern 'burbs of Chicago. I write poetry and also love to ski. I am a huge Sarah McLachlan fan, sail the Caribbean and have been known to dabble with WordPress. [Read More…]
Now that the Genesis theme framework has launched, I finally get to do some things that I really enjoy. Special thanks to Nathan Rice for the … [More]
© Copyright 2010 Brian Gardner · proudly powered by starbucks lattes, really good music and the genesis theme framework · Admin
Hi. I’ve been experimenting with themes. I like this one a lot, except for one small CSS issue. The sidebar uses display:block for all hyperlinks. If I use the “feed_image” parameter in wp_list_categories, the RSS image ends up below the category name, since it’s a separate hyperlink.
If you have more than 13 months of archives, there’s a problem with the footer.
Thank you for this attractive and very readable theme.
I believe I’ve found a small problem.
In comments.php, there are 3 cases:
there are already comments
there are no comments and comments are open
there are no comments and comments are closed
If the fourth case is true (there are comments but comments are closed) the “commentblock” div is never closed.
Change
comment_status) : ?>
to
comment_status) : ?>
to fix the problem.
In comments.php, there are 3 cases:
there are already comments
there are no comments and comments are open
there are no comments and comments are closed
If the fourth case is true (there are comments but comments are closed) the “commentblock” div is never closed.
Change
<?php endforeach; /* end for each comment */ ?>
</ol>
<?php if (‘closed’ == $post->comment_status) : ?>
<?php endif; ?>
to
<?php endforeach; /* end for each comment */ ?>
</ol>
<?php if (‘closed’ == $post->comment_status) : ?>
</div>
<?php endif; ?>
to fix the problem.