Viewing 2 replies - 1 through 2 (of 2 total)
  • 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).

    Thread Starter vad111

    (@vad111)

    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

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Please help!!!!!!! I got strange smileys’ is closed to new replies.