vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   How do I make like this table (https://vborg.vbsupport.ru/showthread.php?t=237218)

Adem GEN? 03-01-2010 06:37 PM

How do I make like this table
 
Hello,

How do I make like this table

Not content
Only table

_______________________
|______________________|
|______________________|
|___|_____|_____|______|
|___|_____|_____|______|
|______________________|
Like...



https://vborg.vbsupport.ru/attachmen...7&d=1263059572


Regards

final kaoss 03-01-2010 06:41 PM

HTML Code:

<TABLE>
<TR>                          hello
        <TD>row one</TD>
        <TD>row 2</TD>
        <TD>row 3</TD>
</TR>
<TR>
        <TD></TD>
        <TD></TD>
        <TD></TD>
</TR>
<TR>
        <TD></TD>
        <TD></TD>
        <TD></TD>
</TR>
<TR>
        <TD></TD>
        <TD></TD>
        <TD></TD>
</TR>
</TABLE>

Or try this to learn more:



HTML Code:

Tables are a powerful but underutilized aspect of HTML. You use three key table tags:

<TABLE>
<TR>
<TD>

And of course the corresponding:

</TABLE>
</TR>
</TD>

(The above tags with the "/" represent that the corresponding tag is being closed. So that means that the <TABLE> <TR> and <TD> tags end wherever the closing tag is inserted.)

<TABLE> Starts the table. You don't specify how many rows and columns it has. Instead, you use <TR> to start each new row. (Guess what? <TR> stands for Table Row.) Then you use <TD> to create each cell you want in that row. (And what does <TD> stand for? Ta da, of course. It's an abbreviation for Table Data.) You can have as many cells as you want within a row, and you don't need to have the same number of cells in every row in the table.

Many properties are available to manipulate the table appearance. You can set the background color, justification for cells. And whether lines are drawn between rows and colums to demarcate cells.


<TABLE WIDTH=90% BORDER=0>

This tag above goes with the <TABLE> tag. Instead of using the closing bracket ( this one > ) add the following information to define the width of the table.

<img src="img3.jpg">

The above image tag is used to place images with in a <TD> row.

Example:

<TD ALIGN="CENTER" WIDTH=35%> <img src="img3.jpg"></TD>


Adding color to a table data cell: ( <TD> )

<TD bgColor=FF0000> </TD>

Adding Font Size and Font Color in a table data cell:

<TD><FONT SIZE="2" COLOR="#6699FF">The text goes here.</FONT></TD>


Adem GEN? 03-01-2010 06:44 PM

Lines in the table does not, for vB4.0.0


All times are GMT. The time now is 12:44 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.00966 seconds
  • Memory Usage 1,724KB
  • 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
  • (2)bbcode_html_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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