by suleski | Apr 11, 2014 | Products, Technical
Typically, if using raw HTML/CSS, chances are that your site might work on something like Chrome, but not on something like Internet Explorer. Enter Bootstrap – a collection of CSS and Javascript that handles the nuances between browsers. It really has become...
by suleski | Apr 11, 2014 | Reference, Technical
As I write the styling for a new site, I want to pay careful attention to too much CSS. As a result, I did some searching on layout times and came across a list of CSS Selector types ordered from most efficient to least efficient. Here they are: ID, e.g. #header...
by suleski | Apr 9, 2014 | Products, Reference, Technical, Walkthroughs
Recently, I gave up on using Eclipse in favor of NetBeans. I had also considered Visual Studio for my Windows machine, but NetBeans was easy to setup a project that did not get in the way of the folder hierarchy and worked well with my local WAMP setup. As I started...
by suleski | Apr 9, 2014 | Reference, Technical
Understanding what WordPress is doing under the hood can be tough – especially when it comes to the raw SQL queries. As is usually typical with WordPress, somebody has written a plugin for it – in this case, it is called debug-bar. To get it going, do...
by suleski | Apr 9, 2014 | Products, Technical
As I develop a new theme, I want to package plugins with my theme. Normally, plugins are installed under wp-content/plugins – but if you are distributing your theme, you need a clean, WordPress-familiar way of distributing the corresponding plugins as well...
by suleski | Apr 9, 2014 | Technical, Troubleshooting
I am developing a new theme from scratch. Came across an issue where the black admin bar (runs along the top of a site for Administrators) was not displaying. Turned out that I had wp_head() called from within my header.php file, but did not have wp_footer() called...