doobie
-
Diamond with an outline
Okay, so that version above works great in Webkit, but not Gecko. FireFox 18 on Mac flips the diamond into an hourglass. Fun times. I'll update again once I figure it out. -Jacob
-
Diamond with an outline
Thanks guys! Here's the version I'm running with right now: http://codepen.io/jacobdubail/pen/LciCJ I'll have to use an image fallback for .no-cssgradients, but this should work pretty well everywhere else. -J
-
Diamond with an outline
Thanks for the great discussion, everyone. This is mostly a challenge to myself. I can generally determine when an image is necessary (or a good idea). As this isn't a logo or a re-used element, I wanted to try to create it using CSS. I don…
-
Diamond with an outline
Thanks ChrisP! I didn't think about using linear gradients. Great idea. I'll refine it a bit and post back when I've got it. -Jacob
-
AnythingSlider in Wordpress - Populate within loop
Hey @flycessna72, What do you mean by "populate the slides dynamically within the loop"? It sounds like the plugin might not be the best thing for you if you don't want your users to create new slides in the dashboard. -J
-
Anything Slider Help, Change Animation to Fade
Hey Mottie, I know I'm about a week late on this... but can/should I just add the stopRepeat as a default option to all slideshows with the 'Fade' option enabled? -J
-
Anything Slider not working + shortcode suggestions
Hey amillet, I just pushed a new version of the plugin with a bunch of new shortcode attributes. I haven't documented all fo them, yet, but you can begin using showMultiple, vertical, easing and a bunch more. -J
-
Help: custom db queries in WP, the right way
How's this look: SELECT download_id, FoxyDownload.product_id, author, price, book_id FROM `FoxyDownload` INNER JOIN FoxyProduct ON FoxyProduct.product_id = FoxyDownload.product_id Any significant drawbacks to doing this? Am I on the right …
-
Anything Slider not working + shortcode suggestions
Hey amillet, Sorry for the delayed response. I'll add these options this week and push out a new version asap. Thanks, Jacob
-
Anything Slider not working + shortcode suggestions
Hey amillet, I'd be happy to add a few new shortcode options for you. Is "showMultiple" the only new option that you need? Thanks, Jacob
-
AnythingSlider autoPlay not working/being temperamental
Hey amillet, I'll add an option for that right away and update the plugin. Great idea! -Jacob
-
AnythingSlider FX Builder
Fantastic! Really slick. I think that would be great to implement into a preview for the WordPress plugin so admins could preview their FX before publishing.
-
[Anything Slider] integration with CMS - get rid of empty images
Which CMS are you working with?
-
Animating DIVs on mouse click CC3, jquery, or Combination of both?
This can be done with CSS3 in browsers that support it (e.g. Safari/Chrome FF 4). If you use a tool called Modernizr, you can easily detect which browsers support this feature and use jQuery for thost that don't. You'll need to write a c…
-
[Solved] how do you skin the vanilla forum?
Nevermind, I'm a dummy. Vanilla is toooo easy!
-
[Solved] how do you skin the vanilla forum?
Hey Chris, In your "Howdy Box", how did you echo the username? Can't figure it out for the life of me. Thanks man, Jacob
-
jquery help
The way jQuery works is that when you apply a method to a jQuery object, as in your var statement, it returns a jQuery object. Basically, when you declare the var $about, you are running the load() method on the #loadContent jQuery object. If you …
-
Form label alignment/positioning in IE 7
Dude, first things first. Get that inline styling out of there and into a proper stylesheet. Then, take a look at this article: http://css-tricks.com/tips-for-creating ... web-forms/. It will answer all of your label placement questions. Good lu…
-
Jquery not loading in wordpress properly
Your jQuery plugin is loading before the jQuery library. Check out your source in Firebug. How are you loading jQuery? Via functions.php with an enqueue script function? How are you loading the plugin? Make sure it is loaded after wphead in y…
-
HTML 5.0 new Supporting Features
html5doctor.com is a great resource. It's HTML5, btw. you might pick up a copy of HTML5 for Web Designers by Jeremy Keith published by A Book Apart. It's a great resource/intro to HTML5.
-
Portfolio Relaunch
Thanks for the feedback! @JoshWhiteDesign - I'll definitely play with that idea. I think you're right about the effect. @betzster - Good call. I'll find a better color. Thanks again! -Jacob
-
Portfolio and blog {Critique please}
You had a horizontal scroll bar that scrolls 3 pixels for no apparent reason. The text-shadow on the nav items was overflowing the view port, causing the scroll bar.
-
How to do this
"virtual" said:No that's not what he meant, you're not actually writing any php, just using the php includes. Using php includes is easy. Read this http://www.tutorialtastic.co.uk/tutorial/php_includes or Google for Php include. …
-
Portfolio Site - First Web Design
I like the simple layout, but I"m not a big fan of lightboxes. Do you have enough content or more images to display the portfolio pieces on individual pages?
-
Pearl Drums India
I'd love to check it out, but your link doesn't work...
-
Portfolio and blog {Critique please}
I like it. The background isn't too in your face; obvious, but not obnoxious. You have an overflow problem with your main nav. You either need to tone down the shadow, or move the nav element to the left 3px (at least in FF 3.6.8 on a mac).
-
View older posts
Chris explains it really well in this thread, too: http://css-tricks.com/forums/viewtopic.php?f=10&t=5976
-
View older posts
You are probably running a custom loop with the query_posts(); function. This is known to wreck paging. Check out this link to fix it: http://stylizedweb.com/2008/08/13/query_posts-pagination-problem/ Good luck!
-
A doubt in Wordpress
You need the fabled Mullet Loop. Jeff Starr has a great post about it at Perishable Press: http://perishablepress.com/press/2007/11/14/easily-adaptable-wordpress-loop-templates/ <?php if (have_posts()) : ?> <?php $cou…
-
how to get different bg image on group of pages
You can add this: <?php body_class(); ?> to your tag in your header.php file. This will auto-generate a bunch of classes for you on the body tag. I assume your landing pages will all be in the same category? Or, if they are pages i…