December 21, 2015
MOD_REWRITE / PERMALINKS
One thing that has been a pain so many times is getting PermaLinks in WordPress to work. And the majority of the time it was because I forgot a simple Option in the Apache Config files, or file permissions. So here is my checklist of things to do to ensure it works (note: all of […]
December 21, 2015
jQuery Masonry
So I recently added Masonry to a Bootstrap 3 page, to organize some divs that are within a section with content above and below. Worked great… except the content below was floated overlapping the new laid-out elements from above. The hack’ish “Fix”… use a setTimeout: var masonryOptions_projects = { columnWidth: “.project”, itemSelector: “.project” }; jQuery(“#projects”).masonry(masonryOptions_projects); […]