image problem with WordPress
-
if i want to place two images side by side..i can’t get it in CSS. the div tag enforces a line break.
<div class=”img-shadow” “style= align:left”> <img src=”https://www.flickr.com/photos/766365_90d47ddf13_s.jpg” width=”75″ height=”75″>
<img src=”https://www.flickr.com/photos/766360_b988532841_s.jpg” width=”75″ height=”75″ alt=”Smoldering Smile” /></div>
</div>
and the tag is defined in the wp-layout.css like this
.img-shadow {
text-align:left;
margin-top:10px;
margin-bottom:10px;
margin-left:5px;
}
.img-shadow img {
display: block;
position: relative;
background-color: #fff;
border: 1px solid #a9a9a9;
margin: 6px 6px 6px -6px;
padding: 4px;
}
- The topic ‘image problem with WordPress’ is closed to new replies.