wait ignore what this said before.
Code:
.moduletable-orange {
width: 32.7%;
height: 265px;
margin: .7% 0;
float: left;
background: #fc8a00 url(images/bg-orange.gif) repeat-x top left;
position: relative;
}
should be:
Code:
.moduletable-orange {
width: 32.7%;
height: 265px;
margin: .7% 0 .7% .8%;
float: left;
background: #fc8a00 url(images/bg-orange.gif) repeat-x top left;
position: relative;
}
You just missed out a couple of the details on the margin for the orange box.
To save confusion i suggest you use:
Code:
margin-left: **px;
margin-right: **px;
margin-top: **px;
margin-bottom: **px;
that way its easier to tell which number does which margin, just easier to troubleshoot that way.  You don't have to if you dont like that idea, just something to think about.
P.S I love the template dude.
Last edited by Joshy D; 02-18-2008 at 05:45 AM..
|