Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions

Reply
 
Thread Tools Display Modes
  #1  
Old 08-30-2005, 10:37 AM
Xplorer4x4 Xplorer4x4 is offline
 
Join Date: Apr 2005
Posts: 938
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How can I form a table?

Bassicly I am trying to create a new table. I added a second nav bar, but I want to create a table between the two nav bars so that I can place my forum banner inside of it.

So how might i go about creating this table?
Reply With Quote
  #2  
Old 08-31-2005, 06:54 AM
Ranma2k Ranma2k is offline
 
Join Date: Dec 2001
Location: Earth
Posts: 586
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Xplorer4x4
Bassicly I am trying to create a new table. I added a second nav bar, but I want to create a table between the two nav bars so that I can place my forum banner inside of it.

So how might i go about creating this table?
o.O if you go and modify the template for the navbar ..
you can go to the end of the template and add a break line
<br>

And creat antoher table

<table>
<tr width=100%>
td></td>
</tr>
</table>

and you should have a table under the nav bar directly ..
fill it with the variables that you want and modifiy it as you want
Reply With Quote
  #3  
Old 08-31-2005, 07:36 AM
Xplorer4x4 Xplorer4x4 is offline
 
Join Date: Apr 2005
Posts: 938
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am trying to add a table to the bottom of my forums under the calender events for the google adds. I added a table between the two nav bars and now it looks like this?

I may have phrased that wrong in my first post. I am trying to make a border of sorts to fill in the gap between the two nav bars.

Help Please?!

I have inlcuded screen shots of both.
Attached Images
File Type: jpg New Bitmap Image (2).JPG (61.5 KB, 0 views)
File Type: jpg New Bitmap Image (3).JPG (108.6 KB, 0 views)
Reply With Quote
  #4  
Old 08-31-2005, 07:43 AM
Ranma2k Ranma2k is offline
 
Join Date: Dec 2001
Location: Earth
Posts: 586
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Xplorer4x4
I am trying to add a table to the bottom of my forums under the calender events for the google adds. I added a table between the two nav bars and now it looks like this?

I may have phrased that wrong in my first post. I am trying to make a border of sorts to fill in the gap between the two nav bars.

Help Please?!

I have inlcuded screen shots of both.
i still don't get what do you want to do ..

you want to creat a table
located where ?!
what the table for ?

if posible can you take a snap shot of what do you want to do ( post comments on it )
Reply With Quote
  #5  
Old 08-31-2005, 07:58 AM
Xplorer4x4 Xplorer4x4 is offline
 
Join Date: Apr 2005
Posts: 938
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First off thank you so much for helping.

Secondly I have atched my nav bar template below. I have attached 2 screen shots. The first one is how my forums nav bar looks. The second one shows a border connecting the two nav bar around the forum banner. I doctored the second picture as to explain what I am trying to achieve.
Attached Images
File Type: jpg New Bitmap Image (2).JPG (114.7 KB, 0 views)
File Type: jpg New Bitmap Image (3).JPG (114.1 KB, 0 views)
Attached Files
File Type: txt navbar.txt (15.3 KB, 4 views)
Reply With Quote
  #6  
Old 08-31-2005, 10:20 AM
Ranma2k Ranma2k is offline
 
Join Date: Dec 2001
Location: Earth
Posts: 586
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if this is what your looking for
you'll find it in the attached file
Attached Images
File Type: png navbar.png (302.8 KB, 0 views)
Attached Files
File Type: txt navbar.txt (15.3 KB, 8 views)
Reply With Quote
  #7  
Old 08-31-2005, 10:36 AM
Xplorer4x4 Xplorer4x4 is offline
 
Join Date: Apr 2005
Posts: 938
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

GENIUS Thank you sooooo much, but I still have 2 questions.

On the default skins it makes a purpleish box around the banner. Can I remove that?

Secondly, is there anyways to get the extra space out between the nav bars and the banner?

Lastley you used this varible to create the table:
PHP Code:
 <tr align="center">
 <
td colspan="8">
 <
a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="http://www.xtremepain.net/banners/index.php" border="0" alt="$vboptions[bbtitle]/></a>
 </
td>
 </
tr>
<!-- / 
top nav buttons bar --> 
By using that as a tempalte can this be used to create another table belwo the courrent events table to place my google adds in?

Thank you again for your help.
Reply With Quote
  #8  
Old 08-31-2005, 11:21 AM
Ranma2k Ranma2k is offline
 
Join Date: Dec 2001
Location: Earth
Posts: 586
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
On the default skins it makes a purpleish box around the banner. Can I remove that?
Yes the row takes the style of the table it's
if you want the back ground a white one .. you can change the code
Code:
<td colspan="8">
with
Code:
<td colspan="8"  bgcolor="#FFFFFF">

Quote:
Secondly, is there anyways to get the extra space out between the nav bars and the banner?
yes
use
Code:
<td colspan="8" cellspacing="0">
Quote:
By using that as a tempalte can this be used to create another table belwo the courrent events table to place my google adds in?
actully this code will only add a table row with one columns ( actully span 8 columns at once )

so if you want to add it in another table make sure that the number of columns in that table and add it in the
Code:
<td colspan="8">
Reply With Quote
  #9  
Old 08-31-2005, 11:33 AM
Xplorer4x4 Xplorer4x4 is offline
 
Join Date: Apr 2005
Posts: 938
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you again, but the spacing isn't working. I changed
PHP Code:
<td colspan="8"
to
PHP Code:
 <td colspan="8" cellspacing="0" bgcolor="#FFFFFF"
The bgcolor took affect but there is still a gap. As best I can see i added those codes togeather correct.

On the table thing, how can I distinguish what colspan number to use? I THINK I can figure the rest out form there.:ermm:
Reply With Quote
  #10  
Old 08-31-2005, 12:20 PM
Ranma2k Ranma2k is offline
 
Join Date: Dec 2001
Location: Earth
Posts: 586
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry my mistake i understoed it wrong

please change the code from
PHP Code:
 <td colspan="8" cellspacing="0" bgcolor="#FFFFFF"
to
PHP Code:
  <td colspan="8" height="AAAA"bgcolor="#FFFFFF"
And replace the AAAA with the height of your Image
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:33 AM.


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.05544 seconds
  • Memory Usage 2,298KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_code
  • (5)bbcode_php
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (7)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete