by suleski | Jan 2, 2015 | Reference, Technical
The WordPress backend has a very specific look to it. If you are looking to add a new page there, you’ll want to style it similarly. It’s not very clear what is available, but after a lot of searching, I came across these links that help shine light on...
by suleski | Dec 20, 2014 | Reference, Technical
When calling AJAX from Javascript, callbacks of ‘success’ and ‘error’ are typically supported. Your call might look something like this (I happen to be using Angular here): $http( request ).success( function( response ) { console.log(...
by suleski | Nov 22, 2014 | Reference, Technical
Overview I’ve been moving into using AJAX as a way to create applications directly in websites. While researching, I’ve come across a number of methods that help me retrieve data from and set data on the server for the client. This article strictly covers retrieval...
by suleski | Nov 20, 2014 | Reference, Technical
Problem I have some heading elements with bottom borders. When the headings wrap, I have problems like this: Of course, I could prevent wrapping, but then that could cause other problems and make for ugliness using or not using overflow. Solution While working in...
by suleski | Aug 23, 2014 | Reference, Technical
I am in the process of putting up a WordPress theme to the Theme Directory. At the top of the parent style.css, WordPress requires something like this: /* Theme Name: Twenty Fourteen Child Theme URI: http://example.com/twenty-fourteen-child/ Description: Twenty...
by suleski | Aug 12, 2014 | Reference, Technical, Troubleshooting
I built a batch file that understands how to generate the documentation for my project. Here are some points that I think are noteworthy for future reference: When using a batch file (instead of just going through a command-line), ensure that we call pear before...