diff options
author | Thomas Park <thomas@thomaspark.me> | 2012-03-17 16:09:15 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2012-03-17 16:09:15 -0400 |
commit | e4add32f88236caf7e81ccb8ed5a4db464c895a6 (patch) | |
tree | 89faf639ce1f85b9271bff4ce6da5c0b30a94444 | |
parent | 5220b45632981dc74853071d2e4b8075bd3269c0 (diff) |
index: fix rss button wrap on ipad
-rw-r--r-- | index.html | 2 | ||||
-rw-r--r-- | js/bootswatch.js | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -70,7 +70,7 @@ <a href="https://twitter.com/thomashpark" class="twitter-follow-button" data-show-count="false" data-show-screen-name="true">Follow @thomashpark</a> <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://bootswatch.com" data-via="thomashpark">Tweet</a> </div> - <div class="span2 rss"> + <div class="span1 rss"> <a class="btn rss-button" href="http://feeds.feedburner.com/bootswatch"><i class="icon-rss"></i><span>RSS</span></a> </div> </div> diff --git a/js/bootswatch.js b/js/bootswatch.js index 6409e208..f4ddece4 100644 --- a/js/bootswatch.js +++ b/js/bootswatch.js @@ -47,9 +47,9 @@ menu = menu + ' </ul> \ }); var taglines = []; -taglines.push('Free themes for <a target="_blank" href="http://twitter.github.com/bootstrap/">Twitter Bootstrap</a>.'); -taglines.push('Add color to your <a target="_blank" href="http://twitter.github.com/bootstrap/">Bootstrap</a> site without touching a color picker.'); -taglines.push('Saving the web from default <a target="_blank" href="http://twitter.github.com/bootstrap/">Bootstrap</a>.'); +taglines.push('Free themes for <a target="_blank" href="http://twitter.github.com/bootstrap/">Twitter Bootstrap</a>'); +taglines.push('Add color to your <a target="_blank" href="http://twitter.github.com/bootstrap/">Bootstrap</a> site without touching a color picker'); +taglines.push('Saving the web from default <a target="_blank" href="http://twitter.github.com/bootstrap/">Bootstrap</a>'); var line = Math.floor((taglines.length) * Math.random()); $('#tagline').html(taglines[line]); |