brianatlarge
-
Floated boxes creating gaps
Wrapping the boxes in floated containers was my plan b, just wasn't sure if there was a trick I was missing. Thanks.
-
Floated boxes creating gaps
So I put in the clear div after the third box, and it helped a little, but it's still aligning to the longest box. http://twitpic.com/2riexa/full
-
jQuery: Traversing up, over and down
That didn't work. I also thought about changing it to .closest('form'), since table is on the same level as the submit button, but that didn't make any difference. I also tried it with the .find() that you suggested, and still …
-
Send me a copy - PHP form doesn't send copy
I think I found out what the problem was: http://www.reconception.com/index.php/joelparent/114-google-apps--media-temple-hosted-dv-35--broken-emailing-from-web-forms
-
Send me a copy - PHP form doesn't send copy
Ok... I think my code works because I just tried some different email addresses and it sends correctly, it's just the emails aren't being delivered to my domain email address. Is it possible that it ignores emails that are sent to and fr…
-
Detecting increments of 12
Wow. That was easy. I'll have to remember that.
-
fadeIn doesn't work in IE 7
I fixed the problem. Basically my intention was to use ID's to link up the thumbnail image with the large image, so that I could store the clicked image ID in a variable and then attach that to the ID of the gallery image that I wanted to show…
-
Resized window, background stops repeating
Yep. Setting a min-width on those pesky divs fixed the problem. That's really weird. Never had that problem before.
-
So....can we truly use HTML5 yet?
I was about to make a similar post, but decided to bump this back up. Is anyone using HTML5 on a regular basis, and if so, have you discovered any issues? I'm planning on switching from XHTML 1.0 strict to HTML5 and was just wondering if there…
-
Checking # links
I'm using Coda. I'll probably try this same technique and see if it works in Coda as well.
-
Checking # links
I'm talking about a site-wide search, like if you had 15-30 pages.
-
[SOLVED] Form elements are stepping down in safari
Really weird. I fixed it by putting in fieldset p {margin: 5px 0;} Apparently there wasn't enough space on the top and bottom for Safari or there were some conflicting issues with how safari was rendering something dealing with the labels. No…
-
Safari positioning issue
Cool thanks. I didn't think about how the relative/absolute positioning was working. Correct me if I'm wrong, but if you absolutely position something, it's going to put it at exactly the position within your browser window, but if y…
-
Checking accuracy of a textarea [RESOLVED]
Thanks so much!!! I saw the split() method on the w3c schools site, but I guess it didn't make it clear enough that it made the array for you. This works perfectly now!
-
Checking accuracy of a textarea [RESOLVED]
So, with further toying around with it, I changed a couple things and got a little further. Still not doing what it's supposed to though. Accuracy Test function checkAcc() { var fieldTextWordCount = 0; var mainWords = new Array(document…
-
disable shift key / multiple action for event
I was able to fix the shift key problem by changing onkeyup=\"checkLength()\" to onkeyup=\"if (!(event.keyCode==16 || (event.keyCode==9 && event.shiftKey))) {checkLength();}\" As far as having multiple actions for t…
-
Javascript count-up timer [RESOLVED]
Ok, I got it to work: Timer var seconds = 0; var minutes = 0; function zeroPad(time) { var numZeropad = time + ''; while(numZeropad.length < 2) { numZeropad = \"0\" + numZeropad; } return numZeropad; } functi…
-
Javascript count-up timer [RESOLVED]
Ok, noob mistake. I added onload = "displayTime()" to the opening body tag, and now my output now says "Time 1:1" which tells me there's another problem besides the fact that it's not working. I need the minutes to onl…
-
Key press adds class to element
Holy crap, that did exactly what I was looking for. Thanks so much!!! I'm slowly learning javascript/jquery, and looking at this and figuring out how it actually works will help me out a lot. Thanks!!
-
Anyone know where I can find out how to do this
I think he's talking about moving the mouse around on the header.
-
Espresso and Coda ( similarities & differences )
I tried out the Espresso trial and have decided to stick with Coda. The biggest thing I couldn't get over is with Espresso, you can't just set up a ftp login to connect to a server. You have to create a local folder for your project. My wo…
-
Keep IE6 from running a .js file?
But if it's commented out, wouldn't every other browser ignore it? EDIT: Nevermind, works like a charm. Thanks!
-
Wordpress sidebar gets stuck at bottom of page
I started from scratch by using the starkers theme. I fixed it by wrapping the posts in a div and floating it left. Silly me.
-
Yep. Another z-index problem thread.
Like always, I make it harder than it should be. I just changed it to and messed with some positioning to make it work.
-
jQuery - selecting something that is clicked
I ended up finding this piece of code and changing some classes and it did exactly what I was looking for! $(document).ready(function() { //hide the all of the element with class ministrydetail $(\".ministrydetail\").hide(); //toggl…
-
jQuery - selecting something that is clicked
Didn't fix it. I'm sure that missing brace would have had some kind of ill effect, however that apparently isn't my problem. Firebug says there is a syntax error on line 5: syntax error }, function() {
-
Navigation Matrix steps down in IE
Chris, I freakin love you. In a professional way, I mean.
-
Wordpress author -- "Post by", where is that option?
Ha. Yep. It was commented out.
-
jquery cycle plugin
That was it. Let me find my boots.