How can I place images next to text? I have this thing in mind but it’s not working. I know I’m a pain in the ass on these forums lately
but I’m just trying to learn here.
<div id="left">
<div class="eventpictures">
<ul>
<li><img src="picture"/></li>
<li><img src="picture"/></li>
</ul>
<h2>Lorem Ispum</h2>
<p>Lorem ipsum dolorem etc etc</p>
</div>
</div>
<div id="right">
</div>
.eventpictures{
padding-left: 25px;
}
.eventpictures img{
border: 1px solid #c98e2a;
}
.eventpictures li{
display: inline;
margin: 5px;
}
.eventpictures ul{
margin: 0 0 10px 0;
padding-top: 10px;
float: left;
text-align="center";
line-height: 3em;
list-style:none;
}
.eventpictures h2{
color: #a57626;
font-size: 1.6em;
}