~Dave
May 17 2007, 09:47 PM
Ok need a little help I own a site called Gaming-Alliance www.gaming-alliance.net anywho i have this issue with tables i have it set so that it'll make links in a row under my head thing heres the link to that so far, i cannot continue without this help  so please make it fast  heres the code CODE <html> <title> Gaming Alliance - Next Generation Of Gamers Today </title> <body bgcolor="#000000"> <table> <tr <img src="images/top.jpg"> </tr> </table> <table> <tr> <td <a href="index.html"><img src="images/home.gif"></a> <td <a href="wow.html"><img src="images/WoW.gif"></a> <td <a href="css.html"><img src="images/css.gif"></a> <td <a href="diablo.html><img src="images/diablo.gif"></a> <td <a href="www.phpbbplanet.com/gamingalliance><img src="images/forms.gif"></a> </td> </tr> </table> heres the site with that code, last 2 wont show...? http://www.gaming-alliance.net/main.html
Reply
matak
May 17 2007, 09:56 PM
Here what would help.. CODE <td <a href="index.html"><img src="images/home.gif"></a> <td <a href="wow.html"><img src="images/WoW.gif"></a> <td <a href="css.html"><img src="images/css.gif"></a> <td <a href="diablo.html"><img src="images/diablo.gif"></a> <td <a href="www.phpbbplanet.com/gamingalliance"><img src="images/forms.gif"></a>
Reply
~Dave
May 17 2007, 09:59 PM
QUOTE(matak @ May 17 2007, 09:56 PM)  Here what would help.. CODE <td <a href="index.html"><img src="images/home.gif"></a> <td <a href="wow.html"><img src="images/WoW.gif"></a> <td <a href="css.html"><img src="images/css.gif"></a> <td <a href="diablo.html"><img src="images/diablo.gif"></a> <td <a href="www.phpbbplanet.com/gamingalliance"><img src="images/forms.gif"></a> WOW thanks i see my error lol  thanks alot
Reply
Albus Dumbledore
May 17 2007, 10:03 PM
Well as for the images missing, it is probably because you forgot the " after diablo.html. and as for your webpage, i hope this is just a test because there are quite a few errors with the site. just to help you along if it is not a test page; Missing Opening and ending <head> tag Missing Doctype (http://validator.w3.org/docs/help.html#faq-doctype) New Standard HTML doesn't allow anything to be included into the <body> tag, so BGCOLOR would need to be put into CSS Instead of doing <td <a href= i might suggest that you just to this <td><a href="link.html"><img src="img"></a></td> Instead of having two tables, have it combined as one table and put the colspan="number of columns to span" into the top row's <td> All <td> tags need to be closed with a </td> tag. Like i said, i hope this is just a test. because i think the page would be much more HTML Friendly and up to web standards if yo do something like this CODE <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Gaming Alliance - Next Generation Of Gamers Today</title> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> <style type="text/css"> body { background: #000000 } </style> </head> <body> <table width="1000px" border="0"> <tr> <td colspan="5"><img src="images/top.jpg"></td> </tr>
<tr> <td><a href="index.html"><img src="images/home.gif" alt="Home"></a></td> <td><a href="wow.html"><img src="images/WoW.gif" alt="WoW"></a></td> <td><a href="css.html"><img src="images/css.gif" alt="CSS"></a></td> <td><a href="diablo.html"><img src="images/diablo.gif" alt="Diablo"></a></td> <td><a href="www.phpbbplanet.com/gamingalliance><img src="images/forms.gif" alt="Forums"></a></td> </tr> </table> </body> </html>
Reply
Dagoth Nereviar
May 18 2007, 08:13 AM
You missed a > after the first TR, and I think you'll probably need a TD around the img too? Actually, you've missed a few > at the links bit, a " after diablo, and also needed to finish the TD tags. Coding can be oh so annoying, but you have to get it all right  I've highlighted the areas that you missed  CODE <html> <title>Gaming Alliance - Next Generation Of Gamers Today</title> <body bgcolor="#000000"> <table> <tr><td><img src="images/top.jpg"></td></tr> </table>
<table><tr> <td> <a href="index.html"><img src="images/home.gif"></a></td> <td> <a href="wow.html"><img src="images/WoW.gif"></a></td> <td> <a href="css.html"><img src="images/css.gif"></a></td> <td> <a href="diablo.html><img src="images/diablo.gif"></a></td> <td> <a href="www.phpbbplanet.com/gamingalliance><img src="images/forms.gif"></a></td> </tr></table> Edit: Can't do BB code in code tags, duh  Here's an example one: <td> <a href="diablo.html "><img src="images/diablo.gif "></a> </td>
Reply
Similar Topics
Keywords : tables,
- How To: Html Tables.
I find these really useful. (8)
Getting Started With Mysql
creating tables and insert data into them. (2) Hi in this tutorial you will learn how to create tables and insert items into them. First steps are
to create the database - go into your cpanel and mysql databases, from there make an account and a
database and then attach them together with all priviliges, call the database test and the account
admin, with the pw as pass - or any other password. We need to connect to the database so first in
your php file (probably named index.php) - this is how to do it. CODE
mysql_connect("localhost", "admin", "pass") or
die(mysql_error(&....
Can You Put Tables Inside Of Tables?
(6) Well... could you? Specifically I mean can you place a tag in a tag which are already parts of
tables.... if so, how do you go about doing it? ....
Align Text Column Without Tables Using Css
Is it possible to get a 3 column alignment without using tables with C (13) I know I can use tables to get this effect but I am not sure if CSS can do it. I have not found any
examples so far, the only alignments with CSS I have come across are whole div elements and nothing
for inside formatting like tables offer. Heres my current stage of my layout so far. select a
character to see output. http://sonesay.trap17.com/chars.php
http://sonesay.trap17.com/profile.css The attached file is of my original plan but at this stage
I cannot do a php+ajax pagination for characters because of lack of knowledge so I went with the
simple drop down lis....
Compare 2 List Of User Ids From Different Tables
(1) Hi all. I am trying to make a list out of 2 list. The first list is a complete list of users id
from users table (List A) The Second list is of users id from another table (List /cool.gif"
style="vertical-align:middle" emoid="B)" border="0" alt="cool.gif" /> I want to subtrack the user
ids in List B from List A and make List C. Thanks in advance for any help /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> Update: I looked up a old
sql book i had and found some query examples. I tried the EXCEPT statement in mysql but it dont wor....
Dynamically Select From 2 Tables Based On Id
dynamically select from 2 tables based on id (1) hi there, im working on a performance request system, and i have three tables that im working with
right now. the performances table holds the info about the performance (date, times, status, etc.),
and has two columns, org_type and org_id, which both hold an int value to tell me where the
organization info is. there are two org types which have respective tables, because we collect
different information based on the type of org that is registering. is there any way to select info
from all three tables (dynamically selecting between the two org tables based on org_type,....
Why Tables For Layout Is Stupid
problems defined, solutions offered (10) this covers what every web developer/designer should know, first and foremost. /biggrin.gif"
style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> although this resource has
been around since 2003, there are still some things to learn from it, especially for beginners. the
gist of it all is this: avoid TABLES for LAYOUT at all cost. /tongue.gif"
style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> Why tables for layout
is stupid: problems defined, solutions offered MAIN SECTIONS COVERED: Introduction
QUOTE ....
Very Irritating Bug!
Tables of my design get messed up (5) Dear Trap17 community, For a while my template has been having problems, and I finaly decided to
ask help from the public.. The website is www.qla6.com and suffers a very irritating bug, an empty
space in the middle of the design which keeps coming every time you load the page, but disappears
after a refresh. This bug only occuers on Internet Explorer and not at the other browsers I've
tested it with (Opera and Mozilla FireFox). Does anyone see a solution to this problem, because I
guess a lot of visitors don't want to refresh the page every time, and they proba....
Please Stop And Tell Me What U Think About Site
my first big project using tables and css (12) I wasnt very active on Trap past few weeks because i was working on my first site. This time i
included css but the whole site isnt coded in css. So please tell me what do u think? dont be
afraid to tell me if you dont like it or something else. Please take a few moments, look the picture
and post. Opinion of T17 members is very important to me! /unsure.gif"
style="vertical-align:middle" emoid=":unsure:" border="0" alt="unsure.gif" /> /huh.gif"
style="vertical-align:middle" emoid=":huh:" border="0" alt="huh.gif" />....
Expandable Tables Problem
(1) I need help. http://www.allroundbiking.co.uk Go on it, see the layout coded etc, check the
source if you wish. I need to know what to do.. In the Trap17 HTML editor, I place text in the
content area etc and the sides of the layout go black and weird and basically goes mucked like the
below link. http://www.allroundbiking.co.uk/index2 ....
Creatin Tables In Mysql
(4) Hi everyone!
I have a problem: when I create a table in MySQL,
I'm asked to fill up some information about each colum.
for example:
| Name | Type | Value | 2nd Value | Attib....
Frontpage Tables
(10) I know your thinking, what a stupid thing to be ranting about but let me explain. I have been
working on version 3 of my website for 3 months now and I am getting to the spliced images part. I
have to use tables now to align the images. I have spliced all the images and put them all in there
spot in the table but no matter what I do they will not line up. I have spacing and padding set to
zero, all of the spanning right but it just will not work. It makes me want to scream and punch my
computer screen in which wouldn't make it much better because I'd have to buy ....
Problem To Join Tables In Database
Problem in joining (many to many) relation (3) Please help me. I'm building a group of database fro a program. the situation is like this:
'user' may have 1 or more class(es). 'class' itself may have 1 or more user in its
classroom. I'm bad at explaining... maybe like this: A program is made to write data of
classroom. Hikaru has a math class at Monday and statistic class at Tuesday. The math class itself
consists of about 50 students in a classroom. So, Hikaru (user ) may have one or more class at
time, math class (class) may have one or more students at time. So, basically I must mak....
Frontpage Tables Tutorial
(0) I'm designing my new website and it happens to involve alot of spliced images. Natually I have
to work with tables in Frontpage alot but I've sort of noticed that they're not that user
friendly. Does anybody know of a good tutorial of something of the sort. Thanks....
How To Create Tables
(1) At the end of this tutorial you should know how to: 1.How to create a database on your sever
2.How to create tables on a mysql database For a script 3.How to confirm your script so that
it works with your database TUTORIAL PART 1 How
do we create a database using the cpanel on a server? Well i'll explain it the best way i can.In
your cpanel go to yor mysql options.Once in you will easeily see than option to create a database
and an option to create a user. Frist go to the create database option and t....
Need Help With Tables Causing A Line Down My Website
(13) On my website there's a line down the page, in between "li" and "nks" on the "links" button.
I'm using two seperate tables (One to each side) so that if the content box goes down for a few
pages, the links box won't follow and have a big gap, and vice versa. It's been annoying me
for quite some time, and I'm not sure how to get rid of it. Ps: Both the tables have
"border=0".....
Advanced Html Frame Tag
Frames and Tables (3) FRAME SYNTAX Frame syntax is similar in scope and complexity to that used by tables, and has been
designed to be quickly processed by Internet client layout engines. CODE <FRAMESET>
This is the main container for a Frame. It has 2 attributes ROWS and COLS. A frame document has
no BODY, and no tags that would normally be placed in the BODY can appear before the FRAMESET tag,
or the FRAMESET will be ignored. The FRAMESET tag has a matching end tag, and within the FRAMESET
you can only have other nested FRAMESET tags, FRAME tags, or the NOFRAMES tag. ....
Fp2003 - Tables
Hope this is the right forum...? (7) Hi, I have designed a page within a table - three columns all adding up to 100% (no fixed pixel
column widths). The thing is that when I previously previewed it in other browsers it showed the
whole page - a but squashed, but everything was in the window without having to scroll horizontaly.
I made some adjustments without interfering with column widths, but now previews require horizontal
scrolling to view the page. Previously the text links in the centre column would wrap to cater for
the smaller browser size, but not now. Also, at the foot of the page there is a b....
An Sql Problem In Php
returnin the name of the tables (1) hello again guys!, i was wondering if there is a way to get the table names from my database
using php. Well what i want to do is to get the name of the tables returned as an array or something
similar... thanx in advance....
Tables Invading Space
(3) hi all ! I have 3 tables in my JSP, now the prob is that when I get some result from my server
the tables seems to invade the other table's space, for example table number 2 goes up and gets
to the right of table 1. (see atachments). Here is the code, all 3 tables has the same code except
the variables. Code: CODE <table border="1" align="left"
cellpadding="10" cellspacing="5" id="normales"> <tr>
<td class="style13"><div align="center" class="style22....
Up Centering Tables And Image Mouse Over Effect
(3) Hi all, I got a few html questions... 1. How can I make the content of a table start from the top?
(Normally it centers vertical...) 2. How can I make an image change into a different 1 if you go
over it with the mouse? (This is a frontpage effect but suckely I dont have any working version of
frontpage)....
A Complete Guide To Tables
(11) I've been away for quite a while but have returned now. with it I bring a tutorial I call
A Complete Guide To Tables . If I miss anything out feel free to add anything else:
--------------------- Tutorial Start --------------------- Why? Why are they used? Why?!
Tables are used every you go for organizing pictures and informtaion. Tables are used in search
engines, games websites and this site too! They are used even without you knowing. Why do so
many people use them? Because their so universal. You can use them to specifically align any....
How To Display Vertical Ads To The Right?
or graphics/ tables etc.. (2) How can we set it up so that all of our graphics are displayed directly to the right of our content,
without strecthing the page vertically? What code would I need?....
Question About Tables!
(13) How can I make tables on my web page to be static (always same size)? I want my page to always be
the same size, I don't want my text to adjust to visible on the page when you make window
smaller. I want horizontal scroll bar to appear!!! Help me!!!!....
Html, Css, Tables...
3 column, header, and possibly footer (10) Which one should I use to design my site with? Or mostly use anyway. Which is better for making it 3
column, header and maybe footer? Where can I find a ready made code? /tongue.gif' border='0'
style='vertical-align:middle' alt='tongue.gif' /> ....
Oracle Tables
Interesting feature (0) hi friends, I wud like to share this interesting piece of info that I got from a friend of mind:
its possible to create tables with no names i.e. a table with spaces as its name (unfortunately).
CODE Create table " " (EMPNO NUMBER(3)); creates a table with 4 spaces
as its name. When you select the list of tables from all_tables, such tables are not visible.
CODE insert into " " values(3); To access such a table use CODE Select *
From " "; (Remember you need to give exactly the same number of sp....
How Can I Close And Open Tables
(1) Hi How can i open and close tables like this site www.ashiyane.com the right and left table has Plus
Jpg and when you click on the table close ? Plz Help me thank....
Optimize Html Tables For Search Engines
how to tutorial (0) Perhaps you've heard that HTML tables reduce search engine optimization efficiency. The truth
is, it isn't the HTML table layout that reduces the efficiency, it's the content order of
appearance within the table that auses the search engine problems. Specifically, it's when
site navigation is placed inside the first cell of the table that causes search engines to
erroneously catalog the navigation links as the theme of your site. Simply put, site navigation
utilizes words like Home, Products, Services, Contacts Us, About Us, Privacy Policy, etc. Such ....
Highlight Tables On Mouseover
Example Script (3) Heare is a good trick: Copy and paste the code below, into the of your html document: CODE
<script> function changeto(highlightcolor){ source=event.srcElement if
(source.tagName=="TR"||source.tagName=="TABLE") return
while(source.tagName!="TD") source=source.parentElement if
(source.style.backgroundColor!=highlightcolor&&source.id!="ignore")
source.style.backgroundColor=highlightcolor } function changeback(originalcolor){ if
(event.fromElement.contains(event.toEleme....
Bg Of Tables
(1) is it possible to make a smaller background for a cell in a table because it would make it easier to
make better looking sites and are there any other way to make good looking drop down link instead of
using the inbuilt simple technique of: Element 1 Element 2 ....
Looking for tables,
|
|
Searching Video's for tables,
|
advertisement
|
|