cabe
-
3 Divs - 33.3% wide 100% height with 2px margin between
hi, your three divs need to have float:left;, the width of 33.3% and no margin. for the margins between them, you have to put extra divs in your panels.
-
NewsLetter mail based design
take a look at this: http://net.tutsplus.com/tutorials/html- ... ml-emails/ styles have to be inline and you should use tables for the layout. sounds bad, but that's the only way to display it correctly in every email client
-
Fix for this?
i think the space after the date could be the reason. your code is: Oct.1 ie really adds a space there and puts it in the next line, so there's an empty line before the year. just remove the space and it works: Oct.1 i also would make the …
-
help - small footer stick problem.
you just have to add overflow:hidden; to your container-div. if you look at the div in firebug, you'll see that the box isn't wrapped around the content without this.