Tag: worky worky
-
the zero (or negative) height problem of elements inside an initially hidden container
phew, that was a long title. But it took me a while to figure out too. basically, I was working on creating a grid with list elements having the same height. I had done this before on Save22’s older version, and had made a function for it: function same_height(container) { var items_height = []; $(container).each(function() […]
-
bootstrap: two toggle buttons on the nav bar
Problem: Both menus on the mobile version collapses when the buttons are pressed. You only want one menu to unfold at a time. Found a fix here: http://jsfiddle.net/gNUEx/ Modified the code a bit: var navbar = $(‘.navbar’); navbar.on(‘click’, ‘[data-toggle=”collapse”]’, function(event){ var $target = $($(this).data(‘target’)); if(!$target.hasClass(‘in’)) $(‘.container .in’).removeClass(‘in’).height(0); })
-
front-end to server-side workflow
There’s a different workflow for everybody so I’m wondering what other people’s workflow are when it comes to doing front-end and then server-side. I would usually: code the base template in PHP (so I have separate header / footer / and content pages. If I need specific body classes, I just write up functions quickly). […]
-
SublimeText2, LESS css, and Bootstrap
I’ve finally managed to figure out how to download/set up Sublime Text 2 Packages, via the Package Control plugin, and oh man it is awesome. To be honest, I’m not sure how I got it working because I was trying it out yesterday and couldn’t figure it out at all (is it just a timing thing […]
-
responsive design and client pitches
Right now, I’m testing out waters with a potential client who is requiring me to submit PSDs of 4 different resolutions (mobile phone, tablet, “medium” desktop, wide-screen desktop) and I’m taking around four hours just trying to design for 1 resolution of 1 specific screen. How I would do it, personally: Design wireframes for the […]
-
on insecurities and growth
I was sharing with C how I felt very insecure about “not being popular enough” last year, and feeling unappreciated in the more seemingly “designer / artist circles.” That, perhaps, feeling overshadowed by other designers/artists made me feel pretty useless. In comparison, I feel like my own set of skills could be appreciated more in […]
-
Building Save 22: design: constantly changing, slowly improving
Building Save 22: design: constantly changing, slowly improving build22: above: a rough draft of the Save22 portal, back in October 2012 above: the Save22 portal today Today we released a small update to Save22.com.ph / Save22.com.sg — the headers. There are a lot of other things that we’re still working on, thinking about, discussing, experimenting […]
-
It’s too early for work and coffee hasn’t kicked in
*lobby calls* Ron: are we expecting a guy named J? Everyone: huh? No. Ron: *on the phone* no, we’re not expecting anybody. Lope: do you want me to go and check? Ron: ok. Three minutes later — Ron: Oh. My bad. It’s the SEO guy
-
wordpress codes: advanced custom fields and grouping select repeater fields
Here’s an example of a repeater field on WordPress: Basically, I wanted the page to render the service names under the similarly-labeled service labels. My brain isn’t very good with the whole PHP logic thing, so I got the internet to help me out. I adapted this original response on StackOverflow and edited it to […]