Please any one help, can't resalve this problem!!!
When I type smileys they show up in a strange form
See it on this page:
http://www.plentyofluck.com/about/
when some one types a comment and inserts smiley it has the same form
look at this comment down the page:
http://www.plentyofluck.com/you-dont-have-to-stay-single/
What should I do now?
I use wp grins plugin, latest WP
Please help me (no PHP knowledge)
Vadim
It looks like a stylesheet issue because the smiley images have the same padding and border as the photograph in the post. Specifically, it's this bit:
img
{
margin: 1em;
padding:5px;
background:none;
border:2px solid #cccccc;
}
Your smileys seem to be assigned a class of 'wp-smiley' by the plugin so you need to define that class in your stylesheet so that they look the ways you want them (no border, less or no padding).
Hi Haecceity,
thanks it resolved, I just added this code to css file:
#content img.wp-smiley
{
float: none;
border: none;
padding: 0px;
margin: 0px;
}
Thank you