whiteInkDesign
-
Good PSD to practise slicing to HTML5/CSS3
I agree with Will, I don't know any resources that offer up PSD for you to convert, might be something on nettuts, but most have already converted layouts to code for people to download. Making your own will also give you practice in creating l…
-
css problem in opera
Opera needs the -o- vendor prefix on transitions. I think IE9 supports them too with the -ms- prefix. Also on a 1024 monitor all the text gets cropped.
-
XML incorporate.
xml is like a simple database. Only you make up all the tags for the data. Ex: Infinite Jest David Foster Wallace 1996 39.99 Gravity's Rainbow Thomas Pynchon 1973 49.95 You then use php or js to ca…
-
Craziest s**t you ever seen?
Really nice single-page scroll site. Super under-stated design, coded in HTML5. http://www.nikebetterworld.com/ Though I may be biased as I own the shoes in the second slide.
-
Need Help Fast - .bak Being Added to Files
need to correct validation errors.
-
Site layout troubles; Help appreciated
@Eamonn giving a container div clear:both does NOT prevent it from collapsing if all its contents are floated. The fact that you're giving it overflow:hidden is what is preventing the containing div from collapsing. Personally I think using ove…
-
My portfolio - Feedback please.
Looks like the spinning logo is done with keyframes as it only works in chrome and safari. Not a bad touch. Though listing your portfolio site within your portfolio on your portfolio site seems a tad redundant, I would hope every web designer design…
-
Jquery Scroll
Hmm, I think you'd do something like use .offset and .top to find the position of the div then .animate scrollTop to move the page to it. Have that bound to .click on on the relevant li tag.
-
Critique my website please :)
Never hurts to validate your html.
-
My new website is finally up...
You know CSS3/HTML5/Javascript and can code websites for wordpress? Based on your site I honestly can't believe any of that.
-
Feedback for a newbie?
You're right on with styling the footer paragraphs. Color wise I'd go with something high-key (closer to white than black). Some resources for finding colors: http://colorschemedesigner.com/ http://0to255.com/ http://kuler.adobe.com/
-
Help me! Please! Multiple .Slidetoggle
Posting the relevant snippet of html code would help, your explanation is a little confusing. Looks like you're reusing these classes multiple times on the page? The js doesn't know to differentiate one from another unless you use $(this) …
-
Feedback for a newbie?
Not crazy about the all the bright blue or the thick black border, but nice work. Your footer has a table in it with a missing closing tag, I'd recommend getting rid of the table there altogether and using paragraphs or something besides a tab…
-
Webkit-Transition on Webkit-Gradients
try using webkit-keyframes animation instead of transition. Remember keyframes only work in webkit browsers where as transitions and gradients have good cross-browser support, so you'd definately need some js fallback.
-
Add a class on click event
Sounds like you're trying to style the navigation tab for the current page? If you're building the navigation dynamically, WP adds the class "current_page_item" to the appropriate li tag automatically that you can style.
-
CSS font Doubt
the 1.231 is for line-height when using shorthand to declare values for the font property.
-
Critique my website please
The values for your page-wrap background and your text are a bit close, try taking the text to something a shade darker like #41554C. Your "stand out from the crowd" box is wider than the rest of your boxes inside in the page-wrap so it st…
-
Doubling up with HTML5 Elements & Divs
The whole point of the new elements is so we don't have to use divs. You're essentially doubling the number of elements in your code by nesting divs and negating the purpose the new elements: cleaner and more semantic markup. The js shiv i…
-
can someone tell me what i've done wrong with this following code
This is my test doc and its working here. js border radius a {background-color:red;} http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
-
can someone tell me what i've done wrong with this following code
then its in some other part of your script, console.log in firebug to troubleshoot it i guess.
-
can someone tell me what i've done wrong with this following code
yes it does, are you loading jqeury? The 5000 puts a 5 second delay on the effect.
-
can someone tell me what i've done wrong with this following code
$(document).ready(function(){ $("#navigation li a").hover(function() { $(this).animate({"border-radius":"20px 0"}, 5000); }); }); 5000 seems like a long time for a hover effect.
-
CSS - changing multiple ID's on hover
If you have a lot shortcuts you'll probably want to make an variable array mapping out the relationships. Piggie-backing off DogsGhost your js would look something like this: var map = { // "shortcut": "keys" "li#scre…
-
Horizontal Nav is going vertical
what browser are you seeing it as horizontal? Latest versions of Safari, FF, Chrome, Opera all showing it vertical for me. Having a width of 100px on your nav might be the issue. Try making it wider.
-
Dynamic Content
whats adding the dynamic body ID? I've been using
-
Jquery .animate
Making .animate toggle-like is way less confusing than I probably made it sound. Here's the js for it, change the 100 values to whatever your original dimensions are: var portSize = "small"; $(document).ready(function(){ …
-
Jquery .animate
Johnny is right on, with .animate you can't actually toggle per-say, but you can create a variable like var portSize = "small"; then use an if statement to grow the div on click, resign the variable to something like "big", …
-
Logo flickering in Safari but not Chrome
the css3 effects from :hover are causing it. not sure on a solution.
-
Best Way To Link To JQuery File?
A number of countries block YouTube and some block StreetView, but the only ones that block Google as a whole as far as I know are China and Vietnam. Do you get a lot of pageviews from China and Vietnam? Then just load jq from your js folder, no big…