Hi!
Love the theme, but the smileys are displayed too high on the respective lines... kind of like superscripted. Is there a possibility to change this?
Thanks
Hi!
Love the theme, but the smileys are displayed too high on the respective lines... kind of like superscripted. Is there a possibility to change this?
Thanks
a link to your site might get you more help, as not everyone has that theme installed.
changes are usually possible with css ... as smileys are usually normal images.
Oh sorry, thought this was a theme-specific forum.
My website is http://www.mentalizm.com
If you scroll down to the second post, you will find a smily, and instantly see what I mean. Would be great if you knew what could solve this issue.
this style (in style.css) is adding padding to images in posts - and a smiley is just that:
div.post-body img {
border:0;
padding:0 10px 10px 10px;
}
as the smiley img has its own css class, you can overwrite this by adding a new style to style.css (for instance):
div.post-body img.wp-smiley {
border:0;
padding:0;
}Now it looks the way it should! Thanks a lot for the quick help! :)
This topic has been closed to new replies.