aaron_b
-
About e-comerce website, what do I need to know?
Check out http://www.bigcommerce.com you get great hosting, they support just about every payment gateway imaginable and once the site is setup you won't have to worry about hosting it.
-
Media Queries mixins in SCSS - Which approach for Mobile-first CSS?
If you had a 3000 line CSS stylesheet, and needed 500 of those lines instantly, would you put those at the top of the stylesheet? Would the styles be applied once the whole stylesheet has downloaded, or do the styles get applied progressively as …
-
Slow time to first byte in Wordpress
Sounds like it could have been a database query performance issue. If you have a localhost version you could setup an Xdebug configuration which would allow function and method tracing, and profiling of PHP applications. This article is unfinished…
-
Wordpress Display Latest Posts' Excerpts
Code Pen will not run PHP, but here is a link to a none working example using your formatting. I have not verified this, so their might be a typo or two, but it will get you on the right track. Code Pen Link Check out the Wordpress Codex
-
twentytwelve theme css mess
jk , line 138 on your style.css .site-content { width:725px; } This should be removed or converted to %;
-
How to load a section of content only if the screen is over a certain width?
Yeah that's true once JavaScript is executed ServerSide processing has ended and you would be limited to AJAX commands . Example: (function () { var viewportWidth = $(window).width(); if (viewportWidth > 1400) { $('#…
-
How to load a section of content only if the screen is over a certain width?
Currently PHP does not have a native client view port detection function. However, you could use javascript or even better Jquery to do this if you wanted. Jquery Option var viewportWidth = $(window).width(); var viewportHeight = $(window).hei…
-
MySQL to JSON tips
Where the question came from, I started developing a mobile app using phonegap which has been working great. However, I'm limited to only to using xmlhttprequest to talk with the server. I'm not using any data modeling for the json, …
-
MySQL to JSON tips
Sorry should have went into to more detail. Example... write a script that when called with javascript will query a database, output the data to a formated .json document that can be returned to a Javascript callback function (your standard ajax).…
-
How much do you charge for hosting ?
Heres our prices for a hosting: Standard Hosting $89.00 a year on a VPS server . $169.00 a year on one of our dedicated servers for more media intensive or larger websites with alot of database query sites. This includes a unique Cpanel Login fo…
-
Responsive Web Design and display:none;
Let me start by saying I know that this is not good practice and still has tons of bugs, but as anyone here built a responsive site using PHP browser detection... http://php.net/manual/en/function.get-browser.php combining this with some php …
-
twentytwelve theme css mess
jk take a look at http://codepen.io/doublea79/pen/ItJFj I commented on some of your HTML and made some suggestions
-
jquery on click events
.click ( ); example: $('.foo').click(function () { // do stuff here });
-
twentytwelve theme css mess
Hey jk, I noticed a couple of things that are causing your issue You are using clear:both; on the search form and on all h1 tags. But then you are overwriting the clear:both using positioning attributes This will be a never ending battle …