toby
-
Featured posts in Wordpress using SmoothGallery
This is the original plugin. I don't know if this is what your using already but it's pretty simple to implement. http://www.revolutiontwo.com/plugins/featured-content-gallery.htm
-
Wordpress...no sidebars...'sidebar' for each post?
A quick google search for 'related posts widget' should sort you out. Here's one... http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/ You'll need to create an extra sidebar module to use the widget only in s…
-
jquery cycle plugin
Hi, Your going to kick yourself! Remove the " / " before the 'jquery' in your script links! Happy holidays! Tob
-
Beginner JavaScript help
Nice! Let's hope it saves you some money in parking fines! Just tried this and I think it should work...got to wait till tomorrow to check though!!! :oops: var currentTime = new Date() var day = currentTime.getDay(); var weekday=new Array…
-
The problem with body{font-size:62.5%;} and em's!
That's not quite what I mean't. I did'nt want 10px I wanted 16px! If my browsers default font size is set to 16px and I use the the 62.5% rule so 1em = 10px and I set my body tag to font-size:1.6em; I would hope the would come …
-
Beginner JavaScript help
I'd suggest making a timetable and sticking it on your fridge! ;) or....use the date() method and some 'if' statements. This should get you started. var currentTime = new Date() var day = currentTime.getDay(); var weekday=new Ar…
-
Wordpress Posts Image
Hi Cybershot, Maybe it is a bit of a longer way. You can just use 'the_meta()' or 'get_post_meta($post->ID, 'key name', true);' which will bring in any post or page custom fields but they have to be 'inside…
-
Wordpress Posts Image
This is done with Custom Fields. These can be a bit scary at first but here's a bullet proof way if you've never done it before. Add this to your functions.php in your theme inside the php tags. function get_custom_field($key, $echo = FA…
-
'MAIN BODY' Moves on navigation button press
This is caused by the scrollbar appearing when your page is longer than the window. You can either set the height of the html tag to 101% so the scrollbar is always there or do this. html { overflow-y: scroll; } The later won't valida…
-
jQuery site?
Did you mean this one? http://melissahie.com/ It's pretty cool and easy to achive with the jquery ScrollTo plugin. http://demos.flesler.com/jquery/scrollTo/
-
How to Learn Photoshop from the Ground Up?
I agree with Cybershot. A Lynda subscription is well worth the money if your starting out learning any sort of software programme, especially something as massive as Photoshop. I've learn't loads of stuff from there. Watching somebody do i…
-
JQUERY STOP ANIMATION
Try looking here. http://docs.jquery.com/Effects/animate#paramsoptions
-
Bug in IE6 for sprite menu
Hi, I don't have IE6 in front of me but I reckon it's got something to do with the top 10px margin on the tags. Get rid of that and put a top margin on the instead. Give the a height of 11px too. I could be wrong but give it a try. T…
-
scrolling an image across a web page
Do you mean this? Cloud Idea
-
scrolling an image across a web page
If you check out the site in Firebug you'll see that the gifs are being moved with a bit of custom javascript. Some simple margin adjustments make the fish look like they're moving up and down. The clouds are being moved with a simple an…
-
Javascript help anyone?
Hi Urban, I'd recommend using one JS framework to avoid conflicts. jQuery allows you to use jQuery() instead of the $() to avoid these issues but I'm not sure about Mootools, etc. Both jQuery and Mootools have a range of plugins that wil…
-
Jquery HELP!!
WTF! Why is everything inside a ul tag? A link might be handy.
-
Coda Slider and WordPress
Just realised that destroyed the page. You have a class in the coda slider called .wrapper the same as your main content .wrapper which is taking on the css rules e.g the nevative margin. Change your main content div to id="wrapper" and …
-
Coda Slider and WordPress
Hi, Removing the 300px negative margin from .wrapper will show all the items. I'm not getting the twitter feed showing at the moment. Hope that helps. Tob
-
Flash MP3 Players
These are hard to find. If you want a specific look. Here's a couple of links you could try. http://www.e-phonic.com/mp3player/ http://www.jeroenwijering.com/?item=JW_FLV_Player http://www.flamplayer.com/ or have a look at http://www.ultrash…
-
Has anyone used "Starkers"?
Cool!!! Starkers has now been updated for WP 2.6.2. http://elliotjaystocks.com/blog/archive/2008/starkers-for-wordpress-262/ Definitely the best place to start with a Wordpress site!
-
is javascript learning needed before to learn jquery?
My understanding of Javascript comes from Actionscript in Flash. They're syntaxs are both pretty similar. Loop in Actionscript for (var x:Number = 1; x < 10; x++) { ***** something here ******* } Loop in Javascript for (var x = 1; x <…
-
wordpress crap
Even better install this. http://wordpress.org/extend/plugins/wplite/ Totally awesome for non Wordpressy clients! Tob :D
-
Unique WordPress pages
Here's a quick update. I may have got ahead of myself! You do actually have to expand the body replacement PHP to cover all your bases. You can pretty much do what you want with it by adding different tags to the code. As it happens the above …
-
Unique WordPress pages
The 'Page Templates' option is at the bottom of the Page editor. If I remember rightly it won't appear until you've created a more than one page. Another good tip is if you want to build a CMS type site using Wordpress with a fr…
-
Unique WordPress pages
Hi, Simply duplicate the page.php and add this to the very top of the new page. When you write a new page in wordpress go to 'page templates' at the bottom and you'll see the name of your new page. You can structure and style the …
-
my portfolio site, let me know what you think.
I like it Matt. Nice slider. Need to bin the outlines on links in Firefox, kind of spoils it. Apart from that it looks cool to me! :D
-
MAMP Set Up
Hi, I'll try to explain this. 1 - Start MAMP. You should see the start up page. Leave it open. 2 - Create a folder for your site in applictations/MAMP/htdocs/. This will be the site root. 3 - Define a new site in dreamweaver. 4 - In "loca…