shazdeh
-
Wordpress dynamic table using custom fields
Checkout Chris's videos on integrating FoxyCart with WP. Just click "videos" in the top menu.
-
WordPress Loop and Slider
Checkout this video by Chris: http://css-tricks.com/video-screencasts/91-the-wordpress-loop/
-
Help writing a custom shortcode
Read the Codex! If you still had problem, ask!
-
using single property classes for multiple elements
If you're looking for efficiency, use CSS transform, which is supported even in IE9 (http://caniuse.com/#search=transform). It's so smooth when you animate these with CSS transition!
-
Certification - Biting the Bullet
I'm a law student, but the one thing has helped me so far is the mouth to mouth word. So, build a reputation and you wouldn't need a degree I think.
-
Separate styles for Macs?
I prefer to do this on the server, not because JS may be disabled and blah blah, but because it can speed up the loading time by removing the need for a jQuery plugin. If you're using WordPress, drop this in your theme's functions, which a…
-
automated opening of an external link
You need to edit the SWF file, goto the last frame of your intro and add a bit of ActionScript. Use Code Snippets panel for AS3 or Behavior panel for AS2.
-
Image with :after issue
I don't remember why, but I read somewhere that content: "\0020"; is better. Does anyone has any info on this?
-
Wordpress -add default text to post category description in admin
Does this do the trick? function category_description_fields() { ?> jQuery(function($){ $('#tag-description').hide().before('En:Sl:'); $('#submit').click(function(){ $('#tag-description').va…
-
Wordpress -add default text to post category description in admin
Could you provide the links for those plugins? I'm interested to check the sources! What do you mean output language tags? What do you wanna do?
-
Wordpress -add default text to post category description in admin
There's no hooks to do that. But you can edit the admin file if you really need to do this. Open up wp-admin/edit-tags.php on line 356, you see this: Or, you could add some jQuery to the page that removes that textarea and replaces it with wit…
-
what is the best way to get this sorted?
Set a fixed width for your elist_input element. like #elist_input { width: 110px; }
-
dynamic content box on static parent page
Chris has several talks on this. See http://css-tricks.com/video-screencasts/84-site-walkthrough/ and http://css-tricks.com/video-screencasts/85-best-practices-dynamic-content/
-
which is the best font for post body?
Seen HTML5 Boilerplate talk by Paul Irish? verdana, Myriad and Arial, none of these are available on all three platforms. Best is to let browser decide which font looks best. This is the code they use: /* Font normalization inspired by YUI Library&…
-
Protect templates or CRC check in JS
There's a contract, but I raised the question as a coding challenge. Why enable them to steal in the first place? About script removing, what we could do is that mix the JS code for checking images with a little code that renders a part of the …
-
Protect templates or CRC check in JS
Solving this programmaticly is a lot easier then dealing with contracts and stuff.
-
Custom Fields - Photo Gallery
the third parameter is $single which determines whether to return a single result or an array of results (if you have multiple custom fields with the same name). You have to get the result and loop over them to show the results, echoing an array is …
-
Digging In To Wordpress - Use of global keyword
Does this actually work? PHP does not have block scope variable so $post in the foreach loop refers to the global $post variable which contains all posts that are currently being viewed.
-
A CSS Nav Menu with the Variable Grid System
1. add this to your CSS: header nav { width: 100%; } 2. I didn't get it :)
-
Question about freebie... Seminar Registration Form
http://css-tricks.com/dynamic-dropdowns/
-
Wordpress plugin php problem
function rw_modernizr_nojs($classes, $class) { remove the $class parameter and it should be fine.
-
sound formats
http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-the-html-5-audio-element/ Also with a flash fallback. Although you there are JavaScript libraries which simplifies the whole thing. Try google.
-
Please explain,i need help!
Just so you know, because this will come handy a lot in the future, you can use google search to search the content of a specific website. try this: site:css-tricks.com whatever you want to search
-
There has got to be an easier way
First of all, you don't need all those !important rules. Check out this article: http://css-tricks.com/specifics-on-css-specificity/ There's an easy way to create custom lists within WP: by using shortcodes. Here is the code from my own t…
-
Form isn't sent once we click on submit button
change if (isset($_POST['submitted'])){ to if (isset($_POST['submit'])){ also fix the input type='button' to input type='submit' and 'methode="POST"' to 'method'.
-
help with custom post type in wordpress
Set rewrite_url parameter to true while you're defining your custom post type and WP handles the rest. See the codex for code examples.
-
Opera and Hebrew font with dir="rtl"
Are you using sIFR? Flash had problems with RTL text in the past, but it has been fixed in CS5. Also Opera has screwed RTL text with character spacing for me in the past. See if you can fix it by applying letter-spacing: 0 on the text.
-
Prevent External Link indicator graphic from displaying on images
How about this? #content a[href$='.png'], #content a[href$='.jpg'], #content a[href$='.jpeg'], #content a[href$='.gif'] { background-image: none; }
-
Best way to load stylesheets
Gzip for sure, but will it load faster to load only one stylesheet with ~100 or ~200KBs of data or will it load faster if you split it up?