sheepysheep60
-
jQuery plugin callback and 'this'
@CrocoDillon ahhh man, thank you so so much, you nailed it. All the best, Dave
-
Performance on back button
Hmmm interesting, thanks for the advice!
-
fitvids vertical letterboxing
Just as a follow up: Make sure to keep the aspect ratio intact by specifying width and height in the iFrame, I hadn't done this originally, which I think was what was ruining the whole effect!
-
parallox scrool
While on the frameworks, I saw a great site using skrollr
-
Websafe, sans-serif fonts rendering as a Standard Serif fonts
Thanks everyone. @jurotek that's a great read, really nice looking website too : )
-
Websafe, sans-serif fonts rendering as a Standard Serif fonts
Looking good! Either, @neerukool helvetica fixed it, or @jurotek moving the universal declaration to the body tag did, either way thank you all. I still am not entirely sure why a Mac with Chrome and Firefox wasn't displaying a websafe font, …
-
Websafe, sans-serif fonts rendering as a Standard Serif fonts
Thanks @ChrisP for checking, I'm sure something is up with their operating system. Can anyone else shed any light on this/do you get any other results?
-
Need help with button placement
No worries, sorry it didn't work out. I think :last is only meant for list elements, my bad. .socialize-buttons { position: absolute; top: 56px; } .socialize-button { position: relative; float: left; width: 100px; } .socialize-con…
-
Need help with button placement
By giving the surrounding div a position of relative, it will let you place the other elements freely inside it - if they have position: absolute. The next bit just says place them 50px from the top, then that last bit just says "of the two y…
-
Need help with button placement
I would add this css to your current style sheet or classes in the style sheet: .socialize-buttons{ position:relative; } .socialize-button{ position: absolute; top: 50px; } that will line up both the buttons but they will be on top of each…
-
Dynamic width
@Jeager hey buddy - sorry, you aren't confused, I am. You nailed it as well - its exactly what I was after - thanks so much! And so, so sorry for overlooking it in my initial response. Your whole example is awesome, but the white-space:nowrap…
-
Dynamic width
Wo, awesome - thanks for the responses. Think I will have to go for just some jQuery and go back to basics, but really impressed, especially with @kgscott284, nailed it completely. Maybe not possible yet, especially for my ancient audience, but r…
-
Dynamic width
So to backtrack, "In CSS is there a way to keep width always wide enough to keep its child elements?" We're going with 'no, there is not.'?
-
Dynamic width
Yep, obviously - but its dynamic - i.e. the number of box elements may go up or down depending on what gets put in the CMS by a client.
-
Relative sizes of fonts
Thanks for these guys. Really appreciate it!
-
Vertical Spacing without Margins
Hey I really like that...! Awesome. I wish these both worked in IE8 though...
-
Styling the footer element.
Some the older IE's don't support HTML5 elements, I haven't looked at your page in a browser I'm afraid but if you're experiencing problems it may be worth adding the following javascript at the start of they page: docume…
-
Vertical Spacing without Margins
Hey Chris that's super clever - thanks for the reply!
-
My client... copyright infringement??... any advice?
Just my personal opinion: a) that other guy's site is WICKED. *thumbs up* b) I think it is really your clients responsibility to not infringe copyright, as at the end of the day it is their site. Make sure you have in writing some emails from…
-
Submitting JavaScript animations to client
Cool, I didn't really mean that though, I have my own servers and things. They will be hosting the animations that I send them. I'm just wondering if there is an easy way for me to package the contents of a JavaScript based animation int…
-
Change background of div according to hash url
Hey sorry haven't been on in a while. It sounds like you could really do with watching something like this: http://css-tricks.com/video-screencasts/85-best-practices-dynamic-content/ not being awkward, but I'm not 100% sure either and I&…
-
Change background of div according to hash url
here you are, have a look at this: http://jsfiddle.net/jFyZ8/1/ using a sprite like you mentioned and jquery
-
Change background of div according to hash url
jamy_sa has given you some javascript, so it would [usually] go inside the tags of your page, inside their own script tags. Like this: //... all the javascript, i.e. $(document.ready(function() { cssChangeBasedOnHash(); }); // dom.read…
-
Is Dreamweaver redundant?
@jamy_za awesome! Do you work for them?! : )
-
jQuery slide Toggle Best Solution.
Look at your code! You call the .click function about 4 times. So it opens, closes, opens closes AHGHHHHH!! $(document).ready(function() { $(".click").click(function() { $(".expand").slideToggle(); }); });…
-
jQuery slide Toggle Best Solution.
Hey man! So, the way I'd go about this is wrap your pairs of triggers and text in divs. I.E. Interested TO PROMOTE JUST YOUR OWN BUSINESS So, now all we need to do is, find the clicked element (in jQuery, $(this)), find i…
-
how can i set a background at footer to expand according to screen size ..?
Pretty straight forward, the CSS would look like this: .inside { width:960px; margin:0 auto; } .header { background:url(path/to/bar/image.jpg) repeat-x; width:100%; /* probably not necessary unless you have reset anything*/ } and the HT…