vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Background color or cell (https://vborg.vbsupport.ru/showthread.php?t=198103)

raja811 12-05-2008 10:29 PM

Background color or cell
 
i need to add in cell user thanks
here my skin
http://www.boostupload.com/files/image_834_1.jpg


i need this in cell user thanks
http://www.boostupload.com/files/image_994_2.jpg

anywone help me !!!!

Lynne 12-05-2008 10:43 PM

You should be posting this question in the modification thread (Thank You hack thread) since they know what code they are using for that area in your template and can tell you were to change it.

Seven Skins 12-05-2008 10:44 PM

You will need to edit "Post thank you hack templates"
Just add background image in the table.

.

raja811 12-05-2008 10:48 PM

Quote:

Originally Posted by Seven Skins (Post 1679334)
You will need to edit "Post thank you hack templates"
Just add background image in the table.

.

no i need to add cell? ex:2nd screen

Seven Skins 12-05-2008 10:53 PM

To add cell/background/color etc ... you need to edit the templates I mentioned.

raja811 12-05-2008 10:55 PM

you need posibit or posibit legasy?

Seven Skins 12-05-2008 11:02 PM

Screenshots you have provided are form postbit_legacy so edit "post_thanks_postbit_legacy" template.

.

raja811 12-05-2008 11:07 PM

post_thanks_postbit_legacy
Code:

<div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
        <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
                <tr valign="top">
                        <td class="alt2" width="175">
                                <if condition="$post['post_thanks_amount'] == 1">
                                        <strong><phrase 1="$post[username]">$vbphrase[post_thanks_user_says]</phrase></strong>
                                <else />
                                        <strong><phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">$vbphrase[post_thanks_users_say]</phrase></strong>
                                </if>
                                <if condition="$bbuserinfo['usergroupid'] == 6">
                                        <br /><a href="post_thanks.php?do=post_thanks_remove_all&amp;p=$post[postid]"<if condition="$vboptions[disable_ajax] != 2"> onclick="post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove]</a>
                                </if>
                                <if condition="$post['show_thanks_remove_option']">
                                <br /><a href="post_thanks.php?do=post_thanks_remove_user&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove_user]</a>
                                </if>
                        </td>
                        <td class="alt1"><div>$post[post_thanks_bit]</div></td>
                </tr>
        </table>
</div>

can you help me i don't know how to added!!!

Seven Skins 12-06-2008 06:04 PM

Code:

<div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
        <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0"  style="border: 1px solid #dadada;"  width="100%" align="center">
                <tr valign="top">
                        <td class="alt2" width="175">
                                <if condition="$post['post_thanks_amount'] == 1">
                                        <strong><phrase 1="$post[username]">$vbphrase[post_thanks_user_says]</phrase></strong>
                                <else />
                                        <strong><phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">$vbphrase[post_thanks_users_say]</phrase></strong>
                                </if>
                                <if condition="$bbuserinfo['usergroupid'] == 6">
                                        <br /><a href="post_thanks.php?do=post_thanks_remove_all&amp;p=$post[postid]"<if condition="$vboptions[disable_ajax] != 2"> onclick="post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove]</a>
                                </if>
                                <if condition="$post['show_thanks_remove_option']">
                                <br /><a href="post_thanks.php?do=post_thanks_remove_user&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove_user]</a>
                                </if>
                        </td>
                        <td class="alt1"><div>$post[post_thanks_bit]</div></td>
                </tr>
        </table>
</div>


That will add border all around your thankyou box.


.

raja811 12-06-2008 06:27 PM

Quote:

Originally Posted by Seven Skins (Post 1679743)
Code:

<div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
        <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0"  style="border: 1px solid #dadada;"  width="100%" align="center">
                <tr valign="top">
                        <td class="alt2" width="175">
                                <if condition="$post['post_thanks_amount'] == 1">
                                        <strong><phrase 1="$post[username]">$vbphrase[post_thanks_user_says]</phrase></strong>
                                <else />
                                        <strong><phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">$vbphrase[post_thanks_users_say]</phrase></strong>
                                </if>
                                <if condition="$bbuserinfo['usergroupid'] == 6">
                                        <br /><a href="post_thanks.php?do=post_thanks_remove_all&amp;p=$post[postid]"<if condition="$vboptions[disable_ajax] != 2"> onclick="post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove]</a>
                                </if>
                                <if condition="$post['show_thanks_remove_option']">
                                <br /><a href="post_thanks.php?do=post_thanks_remove_user&amp;p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2"> onclick="post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>); return false;"</if> rel="nofollow">$vbphrase[post_thanks_remove_user]</a>
                                </if>
                        </td>
                        <td class="alt1"><div>$post[post_thanks_bit]</div></td>
                </tr>
        </table>
</div>


That will add border all around your thankyou box.


.

thanks i need more small change
http://www.monsterup.com/upload/1228595275.jpg


All times are GMT. The time now is 03:29 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01098 seconds
  • Memory Usage 1,762KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete