-
Coffe layout
looks nice - good color choice - i am bit stuck on those headers - maybe add beans of coffee to them! good job though!
-
Portfolio.
yes i agree design one is great! clean and very easy to look at! good job!
-
Email design
Hello, maybe this help you http://www.campaignmonitor.com/css/ also have you thought of making the table be like this: <table> <tbody> <tr> <td><div></div></td> <td><div></div></td> <td><div></div></td> </tr> </tbody> </table> so that the div control the width and style and not the td itself? what do you think?
- help? :(
-
can't get rid of a highlighted box around my spry accordian
Hey, I believe it is the active state of the mouse. meaning when you hold your mouse on any links. in css it is #example a:active { } you can try to make it - padding: 0px 0px 0px 0px; or text-decoration: none (text only) or border:none (for images) Let me know,
-
How to show another background-image when you've clicked on the menu?
Hi, I think i understand what you want: It is like a tab system - when you mouse over or click on the link it will change the background of the link. several ways to do this really. use some css and javascript to switch the background image. I even used some php and aspx coding to rewrite the menu on the fly even by using an include. is it what you want? Let me know,
-
CSS Help
Hi, I would try to make your #content div float to the left: #content { background-color: white; padding: 15px; float: left; } there is also another trick by using float left on all divs but you have to watch out for width/padding and margin values to be equal to your global width. Am I going to have to specify a width for the content div as well ? It is an option but you want fluid design meaning when right content is not visible then you do not have too. Also is there a way of adding two border around a single div ? to add two border you can use a div with border line and add a background image for the inside. Take a look: http://www.cvwdesign.com/txp/article/191/how-to-make-double-borders-with-css http://davidwalsh.name/create-double-border-image-effect-css Let me know