Hello. I am in the process of configuring the CSS search.html using Dreamweaver and I am having a problem with aligning the style for .result_image. I want to align the image icons that I have associated with a file type so that line up to the left on the same line as the result title. By default, they are aligning to the left, but they are not positioning in the top of the column. What am I doing wrong. Here is the code I am using for .result_image and .result_image img:
.result_image {
float: left;
display: table-column;
vertical-align: top;
}
.result_image img {
margin: 45px;
width: 46px;
border: 0px;
}
.result_image {
float: left;
display: table-column;
vertical-align: top;
}
.result_image img {
margin: 45px;
width: 46px;
border: 0px;
}
Comment