In my css file, I have this:
td.horizontal_center {
background-color: #FFFFFF;
border-top-width: 15px;
border-right-width: 0px;
border-bottom-width: 1px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #FFFFFF;
border-right-color: #FFFFFF;
border-bottom-color: #FFFFFF;
border-left-color: #FFFFFF;
height: 130px;
display: table-cell;
vertical-align: top;
background-image: url(images_template1/headernew1.jpg);
background-repeat: no-repeat;
background-position: bottom left;
}
Which works as I want, but I want to add a second image beside the “headernew1.jpg” one. How do I do that? I looked online, but am not sure about the correct way?!