zackw
-
Web Design / Mac or PC?
Its purely personal preference. I use a PC and so do a few others I work with, while others in my office are doing the same job using MAC's. To be honest the best thing to do is get to know both machines and OS, but its really hard to say if …
-
HTML Email Width
What about using width 100% and making a flexible layout, anyone do this or know of any issues with this?
-
Too many pages
@krysak4ever its worth it when your doing lots of psd to html work, that's mostly what I do, and since i do it everyday for 8 hours a day i don't feel the need to keep other tabs open in my browser for research or references, but to each …
-
Too many pages
3 screens, browser on left screen, notepad++ on middle and photoshop template on right, with regards to my browser i only have the webpage open that i'm developing on, i don't see the need for anything else
-
IE6 stops scrolling where it should keep scrolling mid-page
your div id=body isnt spanning the full height of the page, probably because of some floats, insert a after your div id=text-wrapper closing tag you will also need this css .clear {clear:both;}
-
Growing an Image on Hover & Keeping the Image Centered over original position
your prolly going to have to use a combination of js and absolute positioning
-
So....... when is the next CSS Off
too bad its not a timed event
-
CSS overflow:hidden help.
you already have an insane amount of divs anyway so use the clearing div lol... 1 more cant hurt
-
HTML5 Tags
Well if its not going to work in ie7 then i can't use them, clients wouldn't like that
-
HTML5 Tags
Thanks doc, i guess i will just continue to use my divs then lol
-
Cool Scrolling Sites
I find these sites sacrifice usability for design which in my opinion is a big no-no.. there wasnt 1 that i enjoyed browsing
-
Simple CSS question
it seems fine to me - but if your worried about floats clearing then .clear {clear:both;}
-
Help! Problems with Div Positioning.
can we see your html? a link would be even better
-
Image treated as text link
put an id on the a tag wrapping the img and set border:none?
-
Background Image
yup thats the proper way to do it, but really its just 2 flat colors that you could have achieved with css without even having to use an image - but the way you did it is fine
-
Background Image
it looks like your bg-header.png image is just a 180px tall black img, maybe you saved it down improperly from photoshop... download firebug for firefox its a really helpful web development tool, especially for de-bugging problems
-
Background Image
its only spanning 960px because its inside your pagewrap.. if you want the bg to expand the whole way you must take it out of the pagewrap, this will however make your content inside the header go outside the page wrap as well so you will need to in…
-
Question on Class
u can give it as many classes as u like just make sure u use brightonmike's way of doing it, just seperate them by spaces
-
Background Image
change #header in your style sheet to #top-bar since that is what you named your div
-
Background Image
body { font-size: 16px; font-family: Myriad Pro, Arial, Helvetica, sans-serif; color: #000; background:#fff url(images/header-bg.png) repeat; } or if you want it just on the header and footer #header, #footer { background:#fff url(images/header-bg.…
-
problem with footer
im guessing your just linking to your image incorrectly... try background: url(../images/footer.jpg) no-repeat; make sure u set a height as well
-
Alternatives to Flash?
You can mimick most flash animations (which is what I'm guessing you want) with javascript and its generally more light weight and browser compatable, mootools is a good javascript library for animations
-
What do you use for clean crisp text?
when your designing in Photoshop set the text to none instead of sharp or crisp or whatever setting you have it at, this generally represents how the text will look on the web.
-
IE, I hate you, I hate you so much. (CSS style sheet not reading in IE8)
tell them to do a hard refresh (CTRL + SHIFT + R)