Hi guys, I need a simple mod for my phpbb forum that shows a progress bar for donations, the donations don't have to sync with paypal. I can manually enter the Goal and Amount. The bar MUST show the Goal for this month and how much it is at now and also the bar has to be in percentage. Let me know if you can do it and if you charge, how much? Thanks, Fenetic
Cant you just edit the header file to have an image of a percentage, and you just create the image every 10% or whatever? Or even create a bar using two elements based on the percentage and change their widths accordingly (like vbulletin does for the private messages inbox)?
if you will make it by your hand use <html> <head> <style type="text/css" > div.progress-container { border: 1px solid #ccc; width: 100px; margin: 2px 5px 2px 0; padding: 1px; float: left; background: white; } div.progress-container > div { background-color: #ACE97C; height: 12px } </style> </head> <body> <div class="progress-container"> <div style="width: 10%"></div> </div> </body> </html> PHP:
Code is not acid, all you need to change is the "10%" to say "20%" in the "<div style="width: 10%"></div>" line, simple, in fact it is not really code at all, only html.
Which version of phpBB ? Can the settings be integrated with an existing ACP module, or do you want a new ACP module created specifically for the mod ? Do you have a specific style in mind for the progress bar, should the modder do their best to make it match the site and tweek it from there according to your guidance ?