Just diving into jQuery, and here's the page I'm working on right now.
(Fingers crossed it works this time :P)
Testing out some tips on a page called gandhi2.html
When I click "Show/hide gallery," all the images pop up vertically first, then correct themselves to display horizontally. Not ideal. They should be horizontal from the start! Not sure if it's caused by jQuery's slideDown or CSS-related, but everything you need is in the code.
Initially, the images are set to display: none, so maybe they're hidden vertically. Then slideDown happens, and finally, the CSS attributes change to "display: inline". Maybe I need to tweak the order of operations between slideDown and setting CSS properties... but how?
I NEED ASSISTANCE... for many things, but let's focus on this one ;)
And please, take a look at the code before jumping to conclusions. It's all there in the code.
EDIT
Managed to fix it by adjusting one line in jQuery. Changed line 5738 from this.elem.style.display = "block"; to this.elem.style.display = "inline-block";
Should I create my own jQuery version with this change or can I override the value in my HTML? Maybe I should start a new discussion thread for that question...