• http://green-products.tv/

    I took the smilies and changed the background to light green to match my container box that is green and there still is a white border box around my smilies. I just want smilies that have a background that match my container.

    I am using the Tango/GNOME Smilies plugin and should I add a no border tribute to the plugin or my css template. I have no idea how to get rid of this border.

    THanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Edit style.css and change:

    .post-content img {
    background-color:#F7F7F7;
    padding:2px;
    }

    to

    .post-content img {
    padding:2px;
    }

    Try changing these values:

    .post-content img {
    	padding: 2px;
    	background-color: #f7f7f7;
    }

    Set the padding to 0px and remove the background color altogether.

    Alternatively, as doing so will affect ALL images in your post, even the ones you do want a border or padding or whatever, you can try adding this:

    .wp-smiley img {
            padding: 0px;
            background-color: transparent;
            border: 0px;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘my smilies have a white border’ is closed to new replies.