need that one

INSTALL INSTRUCTIONS:
just import product xml file via product manager

for who will use Orange Postbit Legacy Background

HTML:
.postbit {
padding-left: 3px;
padding-right: 0px;
padding-top: 3px;
padding-bottom: 3px;
background-color: #ebebeb; 
background-image: url(images/postbitbg.gif);
background-repeat: repeat-x;
border-top: 1px solid #febb51;
border-right: 2px solid #febb51;
border-left: 1px solid #febb51;
border-bottom: 2px solid #febb51;
margin-bottom: 3px;
}

also you can post into this thread your own created next gen postbit legacy view css'

Additional info I found from a later post:


Originally Posted by maidos
good hack, but how do i add the background for "thank you" mods
I notice that the signatures has the same background aswell, how do i disable it
for thank you mods

find in postbit_legacy template


PHP:
$template_hook[postbit_userinfo_right_after_posts

replace with this
PHP:
<div>$template_hook[postbit_userinfo_right_after_posts</div>

for signatures you can this way disable it

find in postbit_legacy template this code

PHP:
<if condition="$post['signature']">
		<!-- sig -->
			<div>
				__________________<br />
				$post[signature]
			</div>
		<!-- / sig -->
		</if>

replace with this code:
PHP:
<if condition="$post['signature']">
		<!-- sig -->
				__________________<br />
				$post[signature]
		<!-- / sig -->
		</if>
 
Back
Top