| bio | website | goodafternoon.co |
|---|---|---|
| location | United Kingdom | |
| age | 27 | |
| visits | member for | 1 year, 1 month |
| seen | 5 hours ago | |
| stats | profile views | 91 |
Design and Frontend Lead at outer/edge.
|
12h |
accepted | Backbone -> Cannot call method 'remove' of undefined |
|
2d |
comment |
reformat in vim for a nice column layout that is pretty cool |
|
May 20 |
accepted | gem install not creating lib/ |
|
May 20 |
comment |
gem install not creating lib/ How will it end up as ./lib ? |
|
May 20 |
comment |
gem install not creating lib/ lib is not excluded and '..lib' (although that baffles me as well) is correct, it's taken straight from the gemspec that bundler generates bundle gem somegem |
|
May 20 |
asked | gem install not creating lib/ |
|
May 16 |
comment |
Why does display:block not stretch buttons or input elements Correct, I'd love it if somebody would answer about buttons, I'd be really keen to understand why but why... |
|
May 16 |
revised |
Why does display:block not stretch buttons or input elements react to some answers given, update question to ask about remaining points |
|
May 16 |
comment |
Why does display:block not stretch buttons or input elements I read about that. <button> doesn't have a size attribute though, neither does <textarea>, plus if you set the size attribute on an block element, nothing happens. |
|
May 16 |
asked | Why does display:block not stretch buttons or input elements |
|
May 16 |
comment |
input with display:block is not a block, why not? That doesn't fix the problem though. Yes it works if you use width:100% but it doesn't if you use width:auto, see here: jsfiddle.net/hGuzE |
|
Apr 29 |
accepted | Git asks for commit message when pulling from other branch |
|
Apr 28 |
comment |
get_page_by_title in Wordpress. How to use to fetch posts? Not sure why this hasn't got any upvotes yet, it's the only solid answer to this problem that I've come across, thanks! |
|
Apr 28 |
comment |
backbone model saving and callback issues Do let me know what HTTP status your server was returning, I'd like to know what the problem was in the end. |
|
Apr 27 |
answered | backbone model saving and callback issues |
|
Apr 27 |
comment |
show/hide div is opening all divs when button is clicked instead of just one At the top of your page, in your header, you have <style> tag. On line twenty you've set height:300px;. Change that to height:auto and the height of the div will adapt :) |
|
Apr 27 |
comment |
What is the difference between __proto__ and prototype in Java script? David Herman describes this excellently in his new book effectivejs.com |
|
Apr 27 |
comment |
show/hide div is opening all divs when button is clicked instead of just one exchange this: echo "<div style='color:black;' class='slidingDiv' id='tgldiv{$row['reason']}'><b><u>{$row['reason']}</u></b><br><ol>"; with this echo "<div style="color: black; display: none;" class='slidingDiv' id='tgldiv{$row['reason']}'><b><u>{$row['reason']}</u></b><br><ol>"; |
|
Apr 27 |
comment |
show/hide div is opening all divs when button is clicked instead of just one whoops, that was rushed, try now |
|
Apr 27 |
revised |
show/hide div is opening all divs when button is clicked instead of just one deleted 2 characters in body |