I use theme called dottedart 1.0 and i love it but i want text in posts begin below the image
i tried to add display:block; to the style.css, i made separate class for post images and nothing helps
any help
I use theme called dottedart 1.0 and i love it but i want text in posts begin below the image
i tried to add display:block; to the style.css, i made separate class for post images and nothing helps
any help
We need a link to your page so we can actually see what you're talking about and what you're trying to do.
here's the link, i made a post to explain what i mean
This bit of code in your CSS:
.item_class img, #blog_comm img{
float: left;
margin:5px;
}
That's what's making those images float left (and thus causing the wrapping). Specifically, ".item_class img" is defining that float property for the image.
I'd just comment out that particular float:left; and see if that fixes it.
hah, it works, thanks a lot ;)
This topic has been closed to new replies.