sliver37
-
Video Screencasts??
Doesn't Chris have flash fallbacks for the HTML5 player? Either way at least you can start watching :) P.S. Don't use IE outside the purposes of testing! heh
-
i want know any forum which interested in designs layout
@ameral thx i know here is good but i want to know some famous forums which specialized in designing web layouts to know more tricks *sniffles* looks like we're not famous enough to help? :(
-
Website Design Advice
@attilahajzer Just give the submit button the background of your search icon, then absolutely position it over top of the text input making it appear inside. (position: relative on the form itself)
-
computer question
Agreed, get rid of the big ol' clumsy IDE cables, it's for the best :)
-
Pure CSS Perspective Portfolio
The fact we can do this stuff with nothing but CSS still blows my mind. I love it, If only Chrome's anti-aliasing was working correctly, even basic transforms turn into a staircase, oh well it's something that will be fixed eventually. O…
-
Website mockup concept design time... are you fast or slow?
"It depends..." Even at equal skill levels and efficiency most people have their own styles/approaches. eCommerce definitely takes the most time for me. Researching or thinking strongly about usability and call to actions etc. I would …
-
Need help with new site that was launched today
The main thing causing all the problems is position: absolute, you shouldn't do that on everything it's even on elements with floats. Read up on other methods or take a look at how various other sites are doing it.
-
CSS-Tricks Design (v9)
Like the new look for the homepage, I don't know how you can re-design so often! The animated reordering is pretty slick, I completely forgot media queries obey transition! Only thing I miss are the slide-in effects on the footer tabs. The …
-
Web Folder Structure
@jamy_za How do you manage with just a single sheet? :O I've heard bad things about @import, breaking parallel downloading etc. I have avoided using it (i'm sure performance hit wouldn't be noticeable, just my OCD kicking in).
-
Web Folder Structure
css/ images/ product-images/ js/ fonts/ style.css This is the folder structure I use 99% of the time, the base structure at least, before any combining/compressing.
-
Tables + wordpress...
Tested a couple of plugins, WP-Table reloaded looks to be a decent option. Will just mark this as solved for now.
-
How to do angled navigation?
Yeah they use image sprites, first time I have heard of that being classified as doing it "fake" but as has already been mentioned CSS transform will do the same thing without images, just not going to work completely cross-browser. And f…
-
Need people to test my contact form
Best email phishing ever! Heh, like others have said, just spam it with random info to test it. Then throw in some validation, good to go. :)
-
Help on All Ajax
How original, No seriously it was pretty original...
-
need advice in typography
View your pages source then search for "justify" it pops up in various places on in-line styles, which over-ride stylesheets.
-
Mac's Insides
It's completely possible to build your own mac, however, it's not exactly "legal". They are commonly known as "hackintosh" PC's. I definitely encourage people to try it out, no pirating has to be involved, at wors…
-
Why do people expect to pay so little for software?
Professional documentation can help, the ol' GANTT chart, scope statement and "sign-off-sheet" (contract, without the word "contract") can go along way in showing you're serious. As I'm sure you've read, unde…
-
Cool vertical parallax page scroll effect.
Thanks for the resources Mottie! It's fun playing around with this effect, can get some amazing results. For example using all three planes (foreground in addition to middle and back) you can create a fairly convincing 3D effect. This would f…
-
Best mac for webdesign?
Here in AUS I can pick up a 2011 macbook pro (base 13") for $600 or less, and the rest of the product line for large discounts. Requires using the student deals to your advantage. Truth is, web design is so basic in it's requirements any …
-
Cool vertical parallax page scroll effect.
I love the way they didn't overdo the effect, left it nice and subtle (obviously looks bad when scrolling with the mouse wheel though). On a side note I totally forgot about the next elders scrolls title, thanks for sticking it back in my sigh…
-
Had to share this website, some great design stuff going on
A portfolio of an interaction designer, specializing in flash, has an interactive flash based website!!!!? Sure HTML5 and Jquery makes you x2 "cooler" but you still have to wait until older browsers are dead and newer ones implement it p…
-
Average budget?
As I'm sure you know, budgets depend on many factors. To name a few: Your location, this is a big one.Competition, their prices, ectThe client (do you like him/her, previous business, ect)The scope of the project (obviously 200 page, CMS drive…
-
CSS - change Text/background color with onclick!!!
Depending on your actual needs, you can use the CSS pseudo class active to simulate "onclick". a {color: red} a:active {color: blue} /* When clicked (or clicked and held) the color will be blue */
-
website review
Not sure if that last comment was intended as spam, sure appears that way (comment by Esspweb). Just as a side note to that link, there are so many girls smiling and looking towards the camera, must be a trustworthy site! :P
-
What do customers look for in a portfolio?
Yeah create a nice clean design that showcases your best work, only include the designs you feel really stand out. An about section telling everyone who you are and what you do best, a couple of call to actions (contacting you, viewing more portfol…
-
Website Help
Ouch that is a nice looking mess in IE, gotta love it :) Firstly I would run it through here http://validator.w3.org/ and fix up the errors that found. For example as far as I can see isn't closed off, stuff like that you can sometimes get a…
-
Stick Footer Variation
Off the top of my head, using positions (fixed / absolute) prevents your margin: 0 auto; You may be able to do left: auto; right: auto; or left: 0; right: 0; I will have another look when I get back home. EIther way someone will correct it. It…
-
How much would you charge for the following app
Yeah don't worry too much about the money when first starting, just make sure you don't allow people to take advantage of you, £5 is cheap for your skillset, this isn't something anyone can do always remember that. Make sure you stat…
-
Photoshop Bars
Are you talking about the whole progress bar effect, or just the background? Rounded rectangle shape with a gradient and light bottom stroke for depth, is all that's creating the black background wherein the progress bar will grow. It's …