Hey Alliya, to remove the yellow warning box from images embedded using IMG tags, add the following CSS to your style.
Code:
.ncode_imageresizer_warning {
display: none;
}
After doing that you will notice that there is no way to click on the image to enlarge it, so you'll need to do the following. I don't like doing it this way because it involves editing a core file, but it's the only way I could figure it out. Maybe Jase knows a better way.
Using FTP, browse to /includes/ and edit the following line of PHP code in the file "class_bbcode.php".
PHP Code:
return '<img src="' . $link . '" border="0" alt="" />';
change to:
PHP Code:
return '<a target="_blank" href="' . $link . '"><img src="' . $link . '" border="0" alt="" /></a>';
This should get it working, but you will then notice that the images sit flush on top of each other (they have no margin), which looks bad when they are posted in that way (see
here for an example of what I am talking about, note that I have not disabled the warning box).