Adding New Icons

Guides & Snippets for phpBB3.
Try the Snippets here and share Your own Snippets

Adding New Icons

Post by Post Bot »

Adding New Icons
Written by Jaymie1989

Learn how you can add a new icon to your board. Icons like the one we see in front of the FAQ link in the menu.
I have done it for the radio mod on this board.
Its for prosilver or prosilver based styles.

In this example the icon we want to add named icon-radio

Open: styles/your_style/theme/buttons.css
Find:

Code: Select all

icon-search
After add:

Code: Select all

, .icon-radio
Open: styles/your_style/theme/colours.css
Find:

Code: Select all

.icon-search					{ background-image: url("{T_THEME_PATH}/images/icon_search.gif"); }
After add:

Code: Select all

.icon-radio              { background-image: url("{T_THEME_PATH}/images/icon_radio.gif"); }
Save and upload the changed files.
Upload the image.
Refresh the theme.