Well right now I'm scared to change anything... I'll wait till I get your feedback again.
This is my top box, I want the bottom two to look like this one.
(by header i was referring to box headers, hope we're on the same page.)
I'll relabel code so it's easier to understand, the labeling now was to help my messed up head to understand what I was doing.
Code:
/*top box*/
.topmidtop /*BOX HEADER*/
{
margin: .5em .3em .0em .5em;
padding-left: .5em;
width: 741px;
float: left;
background: url('topmidtop.png') no-repeat;
}
.topmiddle /*TOP BOX*/
{
margin: .0em .3em .3em .5em;
padding: .8em;
width: 741px;
float: left;
background: url('topmidmid.png') repeat-y;
}
/*End of top box*/
THESE NEED CHANGING
Code:
.middletop/*box header*/
{
width: 345px;
float: left;
background: url('middletop.png') no-repeat;
}
.middle/*Middle Box*/
{
width: 345px;
margin: 0 0 .3em .5em;
padding: .8em;
float: left;
background: url('middle.png') repeat-y;
}
.righttop/*box header*/
{
width: 353px;
float: left;
background: url('righttop.png') no-repeat;
}
.right /*Right Box*/
{
width: 353px;
padding: .8em;
margin: 0 .5em .3em -.5em;
float: left;
background: url('rightmid.png') repeat-y;
}
Images are the same size. Yet when i upload them on the page they shrink... Like I said, I can keep uploading the image to make it work, but I don't want to go through life guessing and checking images.
What specifically can I simplify?
|