add the below code inside your theme’s style.css
.post .content .under span{
display:block !important;
height:auto
}
Found Solution, Thanx chaoskaizer 🙂
Hello again.
I just wanted anyone to know (especially the author) that this is still an issue in the newest edition (1.1.1). I figured it would have been fixed (since it seems it’s an easy fix) but it hasn’t. Just a heads up. The fix that chaoskaizer posted still works, but a slight aesthetic issue appears (it happened in the older versions of the theme too, just noticed it though)
[img]http://img247.imageshack.us/img247/9538/themeissuenr8.jpg[/img]
I noticed it created a “folder” icon for the second line… Is there anyway to just not have any icon for a continuing line of tags (or other info) or at least have the ‘tags’ image?
Cheers
That works fine, except it places the category symbol in front of the 2nd line of tags….any thoughts on how to fix that?
I have the same problem as jhannigan, that is — category image (folder) is added into the tag line. would appreciate if someone finds a solution: simplepimple.com, scroll down please.
category image (folder) is added into the tag line
It used sprites image for the icons. So you will need to tweak it a bit.
1. Download the single icons http://www.famfamfam.com/lab/icons/silk/icons/tag_green.png
2. Save it inside the theme images dir etc ‘*/inove?/img/tag_green.png’
3. Then edit your theme’s style.css find (on line 372)
.post .tags {
background-position:0 -16px;
}
replace with
.post .tags{
background-image: url(img/tag_green.png);
background-position: 0% 30%
}
Thank you very much chaoskaizer. After editing the style.css with your code and refreshing the page with F5, it works perfectly.
Chaoskaizer,
You rock, I had the same issue. Not any more! Thank you so much.