Topic: Forums Icons
How change forum icon? I want to change forum icon in each section.
Screen:
Sorry for my english
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.4 troubleshooting → Forums Icons
How change forum icon? I want to change forum icon in each section.
Screen:
Sorry for my english
You should add this code at the end of your Oxygen.min.css file in style/Oxygen folder.
.main-content .main-item .icon {
width: 24px;
height: 24px;
float: left;
margin-top: 12px;
margin-left: -33px;
border: 0px solid;
}
Where width and height are your icon size.
Then add this
#forum1 .icon {
background: url(icon1.png) 0px 0px no-repeat;
}
Where icon1.png is your icon and forum1 is your first forum ( forum2 is second etc. )
So here you would have this code at the end of your Oxygen.min.css.
.main-content .main-item .icon {
width: 24px;
height: 24px;
float: left;
margin-top: 12px;
margin-left: -33px;
border: 0px solid;
}
#forum1 .icon {
background: url(redicon.png) 0px 0px no-repeat;
}
#forum2 .icon {
background: url(greenicon.png) 0px 0px no-repeat;
}
However if you haven't got exactly 24x24px icons you would have to change margins in code above. And you will have to experiment.
Thanks for help, but i have next problem. On new script forum icons work well, but i modifes this forum:
http://forum.swiatdladzieci.com/
And here is problem, becouse not here file Oxygen.mini.css. I have folder style, but there is folder "Web20" (theme name) and in this folder are images and css files (web20.css, web20_cs.css). I added up codes, but not see changes.
What now?
This is my web20.css:
http://wklej.org/hash/c839294427b/
This style is for forum icon:
.brd .main-content .new .icon, .brd .online .userstatus span {
background:url(bg_on.gif) no-repeat;
}
OK I DO IT
Thank you.
Why if i use the above metod change the icon in forum (topic list) ?
How to fix it?
Mea culpa,
you can fix it by adding
#brd-index
at the beginning so it would be
#brd-index .main-content .main-item .icon {
width: 24px;
height: 24px;
float: left;
margin-top: 12px;
margin-left: -33px;
border: 0px solid;
}
#brd-index #forum1 .icon {
background: url(redicon.png) 0px 0px no-repeat;
}
#brd-index #forum2 .icon {
background: url(greenicon.png) 0px 0px no-repeat;
}
Thanks
PunBB Forums → PunBB 1.4 troubleshooting → Forums Icons
Powered by PunBB, supported by Informer Technologies, Inc.