I found a number of issues while trying to implement this template mod. I don't know if the author is still posting or has any interest but I needed to make the following amendments to get it to work.
The bb code entry...
'Button Image (Optional) or use attached images/blizz/blizz_icon.gif'
should read
'Button Image (Optional) or use attached images/blizz/blizz_ico.gif'
The additional.css line...
'background: transparent url("/images/blizz/blizz_ico.gif") left top no-repeat;'
should read
'background: transparent url("images/blizz/blizz_ico.gif") left top no-repeat;'
A further amendment to give the rounded corners seen in the screen shot. In additional.css
Find:
Code:
.blizzinner {
background-color: #333;
padding: 0 5px;
}
Replace with:
Code:
.blizzinner {
background-color: #333;
padding: 0 5px;
-moz-border-radius-bottomleft:9px;
-moz-border-radius-bottomright:9px;
-moz-border-radius-topleft:9px;
-moz-border-radius-topright:9px;
-webkit-border-bottom-left-radius: 9px;
-webkit-border-bottom-right-radius: 9px;
-webkit-border-top-left-radius: 9px;
-webkit-border-top-right-radius: 9px;
}