Creativebot
Paragon
Here is a snippet I pulled from one of the phpBB3 templates for you to repeat or use again somewhere else in your template.
This can be used for:
The truth is you can use this for almost everything.
Some other tutorials to help you integrate this code were made by other coders/stylers in the phpbb community.
Check these tutorials/MODs out for extended help in using the snippet of code above:
Another tip:
If you do not want the rounded corners produced by this panel then just remove:
and
This can be used for:
- Making your own custom sidebar
- You can make many blocks on a new phpBB3 page to make your own portal styled layout
- Wrapping around the "Who is online" and "Statistics" for a background
- An announcement/news box in the header
The truth is you can use this for almost everything.
Code:
<div class="panel">
<div class="inner">
<span class="corners-top"><span></span></span>
INSERT WHAT YOU WANT IN THE BOX HERE
<span class="corners-bottom"><span></span></span>
</div>
</div>
Some other tutorials to help you integrate this code were made by other coders/stylers in the phpbb community.
Check these tutorials/MODs out for extended help in using the snippet of code above:
Another tip:
If you do not want the rounded corners produced by this panel then just remove:
Code:
<span class="corners-top"><span></span></span>
and
Code:
<span class="corners-bottom"><span></span></span>







