![]() |
| |||||||
| IPB Skinning Help Need help customizing the looks of your forum? Post here. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #3 (permalink) |
| Member | I tried to post in the other area, but I couldn't. Why couldn't you just take this code here. <input type="radio" class="radiobutton" name="iconid" value="2" /> <img src="http://i74.photobucket.com/albums/i272/skinsbykami/Smilies/confused-smiley-003.gif" border="0" alt="Photobucket - Video and Image Hosting"></a> <input type="radio" class="radiobutton" name="iconid" value="3" /> <a href="http://photobucket.com" target="_blank"><img src="http://i74.photobucket.com/albums/i272/skinsbykami/Smilies/rk01_spammegacartellone.gif" border="0" alt="Photobucket - Video and Image Hosting"></a> <input type="radio" class="radiobutton" name="iconid" value="4" /> <a href="http://photobucket.com" target="_blank"><img src="http://i74.photobucket.com/albums/i272/skinsbykami/Smilies/oregonian_thankyou.gif" border="0" alt="Photobucket - Video and Image Hosting"></a> <input type="radio" class="radiobutton" name="iconid" value="5" /> <a href="http://photobucket.com" target="_blank"><img src="http://i74.photobucket.com/albums/i272/skinsbykami/Smilies/sauer028.gif" border="0" alt="Photobucket - Video and Image Hosting"></a> <input type="radio" class="radiobutton" name="iconid" value="6" /> <a href="http://photobucket.com" target="_blank"><img src="http://i74.photobucket.com/albums/i272/skinsbykami/Smilies/aktion033.gif" border="0" alt="Photobucket - Video and Image Hosting"></a> <input type="radio" class="radiobutton" name="iconid" value="7" /> <a href="http://photobucket.com" target="_blank"><img src="http://i74.photobucket.com/albums/i272/skinsbykami/Smilies/cocos_acc.gif" border="0" alt="Photobucket - Video and Image Hosting"></a><br /> <input type="radio" class="radiobutton" name="iconid" value="8" /> <img src="{ibf.vars.img_url}/icon8.gif" align='middle' alt='' /> <input type="radio" class="radiobutton" name="iconid" value="9" /> <img src="{ibf.vars.img_url}/icon9.gif" align='middle' alt='' /> <input type="radio" class="radiobutton" name="iconid" value="10" /> <img src="{ibf.vars.img_url}/icon10.gif" align='middle' alt='' /> <input type="radio" class="radiobutton" name="iconid" value="11" /> <img src="{ibf.vars.img_url}/icon11.gif" align='middle' alt='' /> <input type="radio" class="radiobutton" name="iconid" value="12" /> <img src="{ibf.vars.img_url}/icon12.gif" align='middle' alt='' /> <input type="radio" class="radiobutton" name="iconid" value="13" /> <img src="{ibf.vars.img_url}/icon13.gif" align='middle' alt='' /> <input type="radio" class="radiobutton" name="iconid" value="14" /> <img src="{ibf.vars.img_url}/icon14.gif" align='middle' alt='' /><br /> <input type="radio" class="radiobutton" name="iconid" value="0" checked="checked" /> [ Use None ] </td> </tr> It's found in ; HTML Templates; Manage HTML; Post Screen Sections; Post: Post Icons Box. Replace where it has <img src="{ibf.vars.img_url}/icon12.gif" align='middle' alt='' /> and replace with your own image, like I did with the top row(see top of the code) I found that script very complicated. That works fine! |
| | |
| | #4 (permalink) |
| Elite Forumer ![]() | No, it does not. To my knowledge, that only changes the images in new topic/ new reply view. It does not change the icons in forum view. - Moridin Forumer Support Staff |
![]() | |
| | |
| | #5 (permalink) |
| Member | Does somebody know an answer to this question. I would also like to change the Post Icons. I read the other topic about changing Topic Icons, but that's only for Topic Icons. Can I also apply that someway to the Post Icons, or is there another solution? |
| | |
| | #7 (permalink) |
| Member | I already build my own solution using JavaScript. Post Screen Sections -> Post: Post Icons Box, go here to add extra Post Icons. Just give them a number and also change that number in the url of the image. For my forum: An existing standard icon: Code: <input type="radio" class="radiobutton" name="iconid" value="14" /> <img src="{ibf.vars.img_url}/icon14.gif" align='middle' alt='' />
Code: <input type="radio" class="radiobutton" name="iconid" value="15" /> <img src="{ibf.vars.img_url}/icon15.gif" align='middle' alt='' />
Global HTML elements -> Board Header (logo, links, etc), insert this code: Code: <script type="text/javascript"><!--
//Hier komt het PI script te staan. Geil.
function pi ()
{
var plaatjes = document.images;
var aantal = plaatjes.length;
for(i=0;i<=aantal;i++)
{
//Vervang de fake-PI voor een echte!
var plaatje = plaatjes[i];
if(plaatje.src == "http://###.#.forumer.com/style_images/##/icon15.gif")
{
plaatje.src = "url-of-the-post-icon";
}
}
}
//--></script>
Now... the JavaScript function must be called on every page that has Post Icons. Post Screen Sections -> Post: Post Icons Box Topic View Section -> Footer Forum Index Sections -> Forum Page End Search Sections -> Results: End Page On these pages add the following code to the bottom: Code: <script type="text/javascript"><!-- window.onload = pi(); //--></script> |
| | |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Post Icons | Phex | IPB Skinning Help | 4 | 09-20-2006 03:52 AM |
| Post Icons | Simply_2004 | Graphics and Web Design (free) | 0 | 10-31-2005 03:15 AM |
| Post icons. | Nightmaresfs | IPB Skinning Help | 9 | 06-23-2005 10:52 PM |
| Changing Post Icons | fartman | IPB Skinning Help | 13 | 02-23-2005 01:42 PM |