Vertigo Blue WordPress Theme
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 ↓
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 [...]
Tell us what you're thinking...
and oh, if you want a pic to show with your comment, go get a gravatar!
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.