Rich,
#content img
{
float: right;
margin-top: 2px;
margin-left: 15px;
margin-bottom: 2px;
margin-right: 2px;
border-style: none;
}
This forces all images in your content div float to right automatically.
You can fix it by removing this definition:
#content img
{
float: right;
margin-top: 2px;
margin-left: 15px;
margin-bottom: 2px;
margin-right: 2px;
border-style: none;
}
It's better to create a new css Class.
For example:
.floatRight
{
float: right;
}
.floatLeft
{
float: Left;
}
Whenever you need to float an image, you can do something like this:
<img src="SomeImage.gif" class="floatRight" />
<img src="SomeImage.gif" class="floatLeft" />
By using this method, you will have more flexibility and less layout issues.
asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
asp wysiwyg html editor: http://cutesoft.net/ASP
asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
Live Support: http://cutesoft.net/live-support/default.aspx