If the images will be the same width, could you do something like this:
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<style type="text/css">
<!--
body {
text-align: center;
}
.outer
{
width : 300px;
border: 1px solid #ccc;
margin: auto;
}
.outer img {
float: left;
border: 0;
margin : 15px 0px 15px 0;
padding : 2px;
}
.text
{
margin : 30px 0px 30px 90px;
padding : 2px;
text-align: left;
}
-->
</style>
</head>
<body>
<div class="outer">
<img src="assets/door_bar.jpg" alt="security bar" width="85" height="58" align="middle" />
<div class="text">
<strong>One line of centred text</strong>
</div>
</div>
<div class="outer">
<img src="assets/door_bar.jpg" alt="security bar" width="85" height="58" align="middle" />
<div class="text">
<strong>To reduce the incidence of repeat victimisation among elderly, vulnerable and disadvantaged people</strong>
</div>
</div>
</body>
</html>
Bookmarks