iamshawnrice
-
Alternatives to Dreamweaver, Photoshop
I 2nd the Sublime Text switch. It's super lightweight (boots in seconds) and highly extensible. I learned on Dreamweaver, switched to Notepad++ and have finally settled on ST.
-
WordPress is_page failing in responsive design
Copy that. I worked out a fairly simple solution via jQuery utilizing WordPress's native namespacing: function mobileCurrentPage() { var page = $('body'); if ( page.hasClass('page-id-54') ) { $('.about_link …
-
a elements, line-height, and border-bottom issues
Isn't that the truth? Thanks again for a quick blast of insight.
-
border-bottom to simulate text-decoration: underline
GENIUS! Thanks, Senff.
-
Best practices for dealing with lightbox effects on responsive sites?
I really am too: I think this mobile-first thinking is leading to a similarly fundamental shift as when we realized flash was simply a bad idea.
-
Best practices for dealing with lightbox effects on responsive sites?
Aces. I'll certainly look into it.
-
Best practices for dealing with lightbox effects on responsive sites?
I suppose they aren't required: It's an aesthetic the client really likes. Example Built with this code I am using conditional php to draw 2 galleries from the same image uploads: using orangebox for full and tablet sizes and photoswipe…
-
Fluid width/height parent container for a jQuery slider?
I found a very workable solution via Chris's fluid video container: .camera_bed { width: 100%; height: 0; padding-bottom: 36%; } Worked like a charm!