JeremyEnglert
-
White Gap at Top of Page - CSS Looks Fine
Got it working by adding overflow: auto; to #home.
-
Making google adsense responsive
http://www.labnol.org/internet/google-adsense-responsive-design/25252/ Might be worth looking into. I'm surprised there isn't more on this topic though. It seems like a lot of website opt for eliminating the ads on smaller screens.
-
Transferring live WordPress site to local
I've always used Duplicator to move WP sites. I've never moved from live to local, but I imagine it would work. I'm actually in the exact situation you're in now. I use Coda 2 and worked on most of my WP sites live. However, now…
-
Any tutorial of flat design?
It's more of a "style" than anything, so finding a tutorial might be a bit hard. But basically you want to cut out all drop shadows, gradients, blends and anything else that gives the perception of depth.
-
Issues with Bootstrap starter template
Try adding this to your head: That should make it display correctly on devices.
-
jQuery Mobile Navigation - Need Some Help
@CrocoDillon - Works like a charm! Thank you! Working Pen here: http://codepen.io/JeremyMG/pen/vsCpI
-
Problems getting Foundation 4 JS to work in WP
Sorry, I temporarily switched it back to Foundation 3 for a Demo. It's now back to Foundation 4 while I work on fixing this issue.
-
Problems getting Foundation 4 JS to work in WP
@mtedwards I actually really like the idea of using each file separately so I could just delete the plugins I don't need on a project by project basis. How did you force the plugins to use jQuery instead of Zepto?
-
Problems getting Foundation 4 JS to work in WP
Just as an update, I tried moving all of the code to the Head (just to see if I had any luck), but the issue still remained. Everything seems to be in place correctly, which really has me banging my head over this one.
-
Problems getting Foundation 4 JS to work in WP
@qbattersby That seemed like part of the problem, so I made the paths absolute to try to cut down on the issue. However, there seems to be another issue causing the modal not to launch. Thanks for getting me going in the right direction! Anyone not…
-
jQuery Mobile Navigation - Need Some Help
Gross. I didn't realize how much junk I left in that code. Here is a much cleaner version of the same code: http://codepen.io/anon/pen/FtrKI Thanks for the help @CrocoDillon. I'm going to attempt what you said now, but I wanted to get the…
-
Div Slide In On Load
@zonger, the little things make all the difference! Thanks!
-
securing wordpress
There are also a few really good, highly supported plugins that can help secure your site. BetterWPSecurity and WordFence both come to mind.
-
Twitter Bootstrap vs. Prefab Theme (Roots)
Im still trying to wrap my head around the Roots template system. It sounds like a great idea, just not what I'm used to. But it seems as if many WP Frameworks are moving in that direction.
-
Mobile Navigation Dropdown
Solved with: $(function() { $('#main-nav_responsive > ul.menu > li > a').click(function(e) { $('#main-nav_responsive > ul.sub-menu').slideUp('normal'); if($(this).next('#main-nav_resp…
-
Mobile Navigation Dropdown
@JohnMotylJr and @Senff, finally got this working! Now my next question, is it possible to make it so the jQuery only affects the mobile navigation? Currently it is also being applied to the main navigation which is causing some issues. I tried thi…
-
Ugh, IE headaches...
With the amount of users using IE7 dropping everyday, you have to make sure it's worth the extra time to make your website work in older browsers. If you're using a CMS you really have to think twice as many 3rd party plugins only have sup…
-
Wordpress Question for a new poster and WP coder
It's a great plugin and lets you pick multiple field types (including WYSIWYG editor and file upload) and set conditions for which types of posts/pages these post types show up on.
-
Mobile Navigation Dropdown
Turns out the problem is somewhere with how WordPress is calling the jQuery script. I was using the recommended way for WP, but when I tried the standard way of calling the script everything worked great. I'm going to need to track down this is…
-
Mobile Navigation Dropdown
Thanks again guys. I wrapped the code with the function and tried it in both the HEAD and right before and still had no luck. I'm thinking there is something causing a conflict or that jQuery isn't set up right in general. Here is every…
-
Wordpress Question for a new poster and WP coder
Use the Advanced Custom Fields plugin. It will allow you to create a custom field for an image upload and the template tags are extremely easy to use and modify.
-
Mobile Navigation Dropdown
@JohnMotylJr Your forked copy doesn't seem to work in jsfiddle, even when I changed jQuery to $ - but I can't seem to figure out why.
-
Mobile Navigation Dropdown
First off, thanks guys! You've been a big help. I think we're getting close, but something is still causing it not to work. @JohnMotylJr I added the }); and even tried copying and pasting your code directly into the HEAD. No luck. You can…
-
Mobile Navigation Dropdown
Hmmm. Still no luck. Here is the code I'm using: http://jsfiddle.net/9cK3X/6/ This has me baffled.
-
Mobile Navigation Dropdown
@Senff, you are awesome! That's exactly what I needed, but I'm having some issues getting it to work with WordPress (not sure if you have experience with this or not). I placed the JavaScript part from this jsFiddle into my Head: http://j…
-
Need help choosing a hosting company.
HostGator has been great for me at work. Plus they have 24 hour support should an issue arrise. I also use DreamHost for my personal site and side projects as it is REALLY cheap - something like $40 for 2 years. Never really had an issue with them …
-
Backstretch Not Displaying an Image
So now it seems to be working on all of the pages except the homepage.
-
Responsive Design Looks Fine in Browser - Breaks on iPhone
It ended up being a WordPress plugin that was causing the issue - even on pages the plugin was not loading on.
-
Responsive Design Looks Fine in Browser - Breaks on iPhone
That's a good idea, but I plan on expanding this stylesheet to work with other devices as well. I need to pinpoint this issue though before moving too far forward with it. It's really weird that it displays fine in responsive testers, but …
-
Different Background Color only in IE
I originally thought it was a transparency issue, but then someone noticed the images were inheriting a grey background from an LI item. I'm just unsure why it is only happening in IE.