treehouse : what would you like to learn today?
Web Design Web Development iOS Development

willB

  • Pagination dots .... between numbers

    I assume you mean for page links as in a archive of blog posts? or just an array of numbers? Either way the concept would be similar, you would need to test where in the array you're outputting you are, and based on the results output the ellip…
    Comment by willB June 2011 permalink
  • dose any one know of a JS template to do this

    It appears the site your looking at is using Easy Slider http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider (example + Downloads) But anything slider would be a good fit too, almost any slider would do probably. Your main…
    Comment by willB May 2011 permalink
  • Good PSD to practise slicing to HTML5/CSS3

    My suggestion is just to make one yourself, having no regard for what's possible or not and then work on it, it's what I did when I was learning and wanted practice. Another option that's really fun is find a magazine that has some in…
    Comment by willB May 2011 permalink
  • Wordpress Archive pages are displaying all posts.

    What Happens when you do this? query_posts( array('post_type' => get_query_var( 'taxonomy' ), 'paged'=>$paged)); ?>
    Comment by willB September 2010 permalink
  • WP Plugin - Array

    If you use explode(): $string = "1,324,34"; $posts_for_plugin = explode(',', $string); You can pretty much leave your code that is getting the string from the dashboard the same. So I guess in full if would be something like…
    Comment by willB September 2010 permalink
  • Extra Fields in Default Wordpress Comment Form?

    I was trying to find another article to show you how I think I would do it but, I found this page on the WordPress site and It discusses the same thing.
    Comment by willB September 2010 permalink
  • Sticky Footer Problem

    Hey, I took a look at the site with Google Chrome inspector (Firebug would work if you want to look). Your problem is that the div "footernav" is taller than the footer. Changing the height of footernav fixes this problem
    Comment by willB September 2010 permalink
  • First Wordpress Theme -

    Question 1: Your content isn't long enough to force the white box to reach the bottom of the screen. Part of Question 2: To remove the default template you have to delete it from your server, but anytime you upgrade the site it'll just ad…
    Comment by willB September 2010 permalink
  • [Solved] CSS - Table question

    I had some time so I tested it, it doesn't work in webkit browsers. but when I wrapped the table in a div and added those CSS settings it worked like a charm. Just figured you'd want to know.
    Comment by willB September 2010 permalink
  • Wordpress self referencing form

    Have you tried just using:
    Comment by willB September 2010 permalink