Rafael Steil wrote:No, it shoulnd't. You need to have "tranps.gif" in the images/ directory, and it will work fine.
Rafael
Ok, I got the point, and see that some buttons are defined in the lang.css files
I still have problems on both firefox and safari with the buttons being not displayed.
It seems that there is a problem with the css files
example : en_US.css
.en_US .icon_new_topic img { background-image: url(../images/en_US/post.gif); width: 82px; height: 25px; }
.en_US .icon_reply img { background-image: url(../images/en_US/reply.gif); width: 82px; height: 25px; }
.en_US .icon_reply_locked img { background-image: url(../images/en_US/reply_locked.gif); width: 82px; height: 25px; }
.en_US .icon_quote img { background-image: url(../images/en_US/icon_quote.gif); width: 59px; height: 18px; }
.en_US .icon_edit img { background-image: url(../images/en_US/icon_edit.gif); width: 59px; height: 18px; }
.en_US .icon_profile img { background-image: url(../images/en_US/icon_profile.gif); width: 59px; height: 18px; }
.en_US .icon_pm img { background-image: url(../images/en_US/icon_pm.gif); width: 59px; height: 18px; }
If I remove the first .en_US class selector eg the en_US.css =
.icon_new_topic img { background-image: url(../images/en_US/post.gif); width: 82px; height: 25px; }
.icon_reply img { background-image: url(../images/en_US/reply.gif); width: 82px; height: 25px; }
.icon_reply_locked img { background-image: url(../images/en_US/reply_locked.gif); width: 82px; height: 25px; }
.icon_quote img { background-image: url(../images/en_US/icon_quote.gif); width: 59px; height: 18px; }
.icon_edit img { background-image: url(../images/en_US/icon_edit.gif); width: 59px; height: 18px; }
.icon_profile img { background-image: url(../images/en_US/icon_profile.gif); width: 59px; height: 18px; }
.icon_pm img { background-image: url(../images/en_US/icon_pm.gif); width: 59px; height: 18px; }
Then, safari and firefox display the correct buttons
Question : what is the .en_US class selector used for ???
[originally posted on jforum.net by Anonymous]