Support for PhpBB3 BBCodes.
Post here to get help with any BBCode related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe exactly what it is you want.
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
DannyG Offline
BBCoder II
Posts: 54 Joined: 10 Mar 2010, 16:05
Local time: Sunday 10:09Last active: -
Post
by DannyG » 03 Aug 2010, 13:45
I submit a BBcode.
I have a star rating code incorperated into the "Downlink" BBcode. I would like to know how to centralize the star rating and the "Please Vote!" text under the Download button.
Demo
Code: Select all
<table>
<tr>
<td title="Download Here..." onclick="window.open('{URL}', '_blank')"" style="cursor:pointer;"><img src="http://img42.imageshack.us/img42/981/208bq00.png" alt="" /></td>
<td title="" onclick="window.open('{URL}', '_blank')"" style="cursor:pointer;"><span onmouseover="this.style.color ='#FF0000';" style="font-weight: normal; font-size: 11px; color: #000000; font-family: Arial;" onmouseout="this.style.color='#000000';"><b> </b></span></td>
</tr>
</table>
Please Vote...!
<script type="text/javascript" src="http://cdn.widgetserver.com/syndication/subscriber/InsertWidget.js"></script><script type="text/javascript">if (WIDGETBOX) WIDGETBOX.renderWidget('25f97bd5-cdfb-4272-9c20-dc45862db5ed');</script><noscript>Get the <a href="http://www.widgetbox.com/widget/rating">Five-Star Ratings Control</a> widget and many other <a href="http://www.widgetbox.com/">great free widgets</a> at <a href="http://www.widgetbox.com">Widgetbox</a>! Not seeing a widget? (<a href="http://docs.widgetbox.com/using-widgets/installing-widgets/why-cant-i-see-my-widget/">More info</a>)</noscript>
I hope it makes sence
Steve Offline
Donator
Posts: 1,429 Joined: 04 Mar 2010, 23:10
Local time: Sunday 11:09Last active: -
Post
by Steve » 03 Aug 2010, 14:06
try this code:
Code: Select all
<div style="text-align: center;float: left;">
<table>
<tr>
<td title="Download Here..." onclick="window.open('{URL}', '_blank')"" style="cursor:pointer;"><img src="http://img42.imageshack.us/img42/981/208bq00.png" alt="" /></td>
<td title="" onclick="window.open('{URL}', '_blank')"" style="cursor:pointer;"><span onmouseover="this.style.color ='#FF0000';" style="font-weight: normal; font-size: 11px; color: #000000; font-family: Arial;" onmouseout="this.style.color='#000000';"><b> </b></span> </td>
</tr>
</table>
Please Vote...!
<script type="text/javascript" src="http://cdn.widgetserver.com/syndication/subscriber/InsertWidget.js"></script><script type="text/javascript">if (WIDGETBOX) WIDGETBOX.renderWidget('25f97bd5-cdfb-4272-9c20-dc45862db5ed');</script><noscript>Get the <a href="http://www.widgetbox.com/widget/rating">Five-Star Ratings Control</a> widget and many other <a href="http://www.widgetbox.com/">great free widgets</a> at <a href="http://www.widgetbox.com">Widgetbox</a>! Not seeing a widget? (<a href="http://docs.widgetbox.com/using-widgets/installing-widgets/why-cant-i-see-my-widget/">More info</a>)</noscript></div>
center.PNG
secret code: 123
might be abc
or thank you
might work
When I'm writing code, I am building a picture for you to see and use on your screen...
DannyG Offline
BBCoder II
Posts: 54 Joined: 10 Mar 2010, 16:05
Local time: Sunday 10:09Last active: -
Post
by DannyG » 03 Aug 2010, 14:18
Spot On....!