• Resolved mrnomas

    (@mrnomas)


    I’m having problems with emoticons with my new theme. It seems that whenever they are used, they are pushed down to the next line and bump the next text over. This happens in posts and comments. Here is an example (scroll down to comment 4). That smiley should be after “dead”. I’ve tried moving the smiley or putting text after it and it still bumps down. I’ve spent hours trying to figure out where in the stylesheet (and just about every other file I can think of) to fix this. Help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • .item_class img, #blog_comm img{
    	float: left;
    	margin:5px;
    }

    your floating it left.

    if you change that, you will affect other things.

    I recommend using the assigned class for smilies and adding to your CSS

    class="wp-smiley <– all smilies use that class

    Thread Starter mrnomas

    (@mrnomas)

    So I should enter this code into the stylesheet?

    .item_class wp-smiley, #wp-smiley{
    	float: none;
    }
    Thread Starter mrnomas

    (@mrnomas)

    For posterity the answer was to add the below code to my stylesheet.

    ‘.item_class img.wp-smiley, #blog_comm img.wp-smiley, div#blog entry img.wp-smiley { float: none; }’

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Emoticon issue’ is closed to new replies.