GreatPotato
-
HTML5 form weirdness with the "size" attribute
Doesn't help... Our CMS is huge so i really need to use the size tag because I need such a wide range of sizes. I'm probably going to have to do etc. Not ideal but not sure on what to do otherwise.
-
jQuery delay() and toggle()
Interesting... Will experiment further. I have the required effect and it looks awesome, but always nice to be able to tweek it. Thanks for the help, Chris!
-
jQuery delay() and toggle()
Figured it out... Basically just built my own toggle by test a variable to see if it was even when an element is clicked... var delay = 0; $(".form h3").click(function() { delay++; if(delay%2 == 0) { $(this).siblings(".righ…
-
Help with drop down menu
http://herbert.thinblack.com/ Ok, got it mostly working except screws up in IE7... Had to "hack" with: *float: left; To make IE7 display the parent pages correctly. But now the child pages don't display as blocks (even though I ha…
-
Border-bottom hyperlinks
Yeh, that's exactly what i've done for now but it's not very elegant.
-
Help with drop down menu
IE doesn't support inline block does it?
-
[Solved] Static Sites?
When i was young and didn't know any PHP?/SQL the best place i found was Tizag - http://www.tizag.com/mysqlTutorial/mysqlsyntax.php
-
border-image experiment
Yeh it was just something i was playing around with to see if I could use it for that method. Making it "37 37 37 37" works, but it just removes the drop shadow that I wanted to overlay the image.
-
WP template files?
It depends how you've setup your wordpress installation, but generally you'll need to edit your index.php (and style.css of course!)
-
[Solved] IE7 and jQuery
Ok i was wrong, it does work in IE7.
-
[Solved] IE7 and jQuery
I think it's the "Skitter" plugin causing problems - this is the only thing I can get to work now. Their demo page doesn't seem to work in IE8 with IE7 mode on either... So maybe it's just not compatible.
-
[Solved] CSS modify child on hover
Ah that's brilliant because I wanted to use it with a transition anyway. Thanks!
-
Is burnout normal?
My secret is Relentless. And lots of it.
-
Help with Lavalamp and dropdown menu (on Worpdress)
$('.children li').attr('class', 'noLava'); That will stop the child pages affecting the parent pages lavalamp.
-
HTML5 Wrapper
Thanks for the advice! Also, while on the same subject, is it ok to place the 'footer' outside of the 'body'? I know you don't need to define a body in HTML5 but little confused...
-
13" vs 15" MacBook Pro
Ok i'm going for the 15". Should I pay for the screen upgrade though? MacBook Pro 15-inch Glossy Widescreen Display [+ £0.00] MacBook Pro 15-inch Hi-Res Glossy Widescreen Display [+ £80.01] MacBook Pro 15-inch Hi-Res Antiglare Widescreen…
-
13" vs 15" MacBook Pro
Would you say it was too small for casual work? Im talking minor updates to websites while you are out of the office etc? I may do a little development while I am off work etc? Im being pushed towards the 15" but the 13" is just so cute!…
-
[Solved] 100% Header + Box Shadow Issue
I had a similar problem with Firefox recently (was a problem in Chrome, Safari et al), but I managed to fix it with: body { width: 100%; overflow: hidden; }
-
CSS3 random number
I was afraid js might have been the answer - I really do like to avoid it when possible (especially for something so trivial as generating a whole number between -5 and 5). I like the solution adrusi, I will experiment with this. Thanks!
-
Slide up/slide down
Yeh but essentially my click button is part of the DIV that is sliding so if I use toggle the link is gone - I will experiment today
-
Subfolders in wordpress
Create a category called "judo" and then create a new post in that category... That will create: http://yoursite.com/judo/hip-toss/ ((not so)Obviously you'll need to enable permalinks from within Wordpress settings to do this)
-
[Solved] jQuery Masonry & Google Fonts
Found the solution, http://github.com/desandro/masonry/issues/closed#issue/3 Thanks again!
-
[Solved] jQuery Masonry & Google Fonts
How would I achieve that? Thanks for the help by the way.
-
[Solved] CSS Opacity for certain Divs
.transparent50 { background: rgba(255, 255, 255, 0.5); } .transparent100 { background: rgba(255, 255, 255, 1); } Then just use ... etc Ps: sorry about the abruptness, in on my phone.
-
[Solved] Positioning and z-index
Ah that's brilliant! Thanks a lot!
-
[Solved] Positioning and z-index
I don't think this is going to be possible without javascript.
-
[Solved] Positioning and z-index
@christianchoice Sorry I should have explained better. That won't be possible because these will be powered by either Tumblr or Wordpress and will be posts, so assigning these attributes will be impossible without JavaScript or similar... @no…
-
Div Width Problem! Please Help!
I might be wrong but I think you're going to need some JavaScript to calculate the value and turn it into pixels... It's a shame you can't do: width: 100% - 200px; We can only dream