PDA

View Full Version : An organized, unique and cleaner Postbit_legacy Please


dbirosel
04-10-2007, 04:16 AM
How do we organize our postbit_legacy like this??

http://www.epiguide.com/forums/showthread.php?p=43785#post43785

Here is how my postbit_legacy looks:

http://www.caraudiojunkyard.com/forum/showthread.php?t=797

It's so messy, how should make my legacy look cleaner, unique and more organized?

HMBeaty
04-10-2007, 04:17 AM
I do it with CSS and a small bit of code :)

It can be a really...................tedious project sometimes

dbirosel
04-10-2007, 04:19 AM
I do it with CSS and a small bit of code :)

It can be a really...................tedious project sometimes
How does your postbit legacy look like?

HMBeaty
04-10-2007, 04:19 AM
How does your postbit legacy look like?

Basically the same as the link you posted

dbirosel
04-10-2007, 04:21 AM
Basically the same as the link you posted
Sweet, where can i start? :) I was thinking about dotted borders.

HMBeaty
04-10-2007, 04:27 AM
In your "Additional CSS Definitions", add this code in the 2nd box....
.rm_userinfo {
border: 1px solid #9FB2B8;
margin: 3px;
padding: 3px;
background-color: #DDECF1;
border-top: 1px solid #000;
border-right: 1px solid #000;
border-left: 1px solid #000;
border-bottom: 1px solid #000;
}
Customize the colors to your liking.

Then in the postbit legacy template (Using the "Join Date" as an example) find....
<if condition="$post['joindate']"><div><b>$vbphrase[join_date]:</b> $post[joindate]</div></if>
And replace with
<if condition="$post['joindate']"><div class="rm_userinfo"><b>$vbphrase[join_date]:</b> $post[joindate]</div></if>

And just pretty much do that for all the fields you want to look cleaner

dbirosel
04-10-2007, 04:30 AM
In your "Additional CSS Definitions", add this code in the 2nd box....
.rm_userinfo {
border: 1px solid #9FB2B8;
margin: 3px;
padding: 3px;
background-color: #DDECF1;
border-top: 1px solid #000;
border-right: 1px solid #000;
border-left: 1px solid #000;
border-bottom: 1px solid #000;
}
Customize the colors to your liking.

Then in the postbit legacy template (Using the "Join Date" as an example) find....
<if condition="$post['joindate']"><div><b>$vbphrase[join_date]:</b> $post[joindate]</div></if>
And replace with
<if condition="$post['joindate']"><div class="rm_userinfo"><b>$vbphrase[join_date]:</b> $post[joindate]</div></if>

And just pretty much do that for all the fields you want to look cleaner
Great thanks alot. I'll try that out right now. Also, where is that mod that shows you how to input information on the navbar? The image you have for the donate button. :)

HMBeaty
04-10-2007, 04:33 AM
Great thanks alot. I'll try that out right now. Also, where is that mod that shows you how to input information on the navbar? The image you have for the donate button. :)

Its not a mod. I customized that into the navbar myself.

dbirosel
04-10-2007, 04:43 AM
Its not a mod. I customized that into the navbar myself.
Care to share it? :D

HMBeaty
04-10-2007, 04:49 AM
In your navbar template find....
<if condition="$show['member']">
<td class="alt1" valign="top" nowrap="nowrap">
<div class="smallfont">
<strong><phrase 1="$bbuserinfo[musername]">$vbphrase[welcome_x]</phrase></strong><br />
ABOVE it add....
<!-- Redlinemotorsports -->
<td class="alt1" align="center">
<a href="LINK_TO_DONATE"><img src="LINK_TO_DONATE_IMAGE" border="0"></a>
</td>
<!-- Redlinemotorsports -->

Change the LINK_TO_DONATE to where you want to direct users to make donations and LINK_TO_DONATE_IMAGE should be self explanatory

dbirosel
04-10-2007, 06:35 AM
Working great thanks!