savge17
Apr 4 2006, 06:44 PM
WindAndWater
Apr 4 2006, 08:03 PM
To answer your question directly, the content's too far over to the right because it's outside of a table that it should be inside of (or so Firefox's webDev makes it look). About half way down the page you re-declare your doctype, html, head, embedded stylesheet, and body tag. The doctype needs to go at the top, the stylesheet needs to go in between the initial head tags, and the rest needs to be removed. Honestly, you have so many needless tables in there that it's hard to find where your exact problem is. I would suggest simplifying it down to a single table to arrange all the pieces, then add in your extra tables for effect, if you so desire. Better yet, since you already have stylesheets, you should be able to create the layout you want with only the initial table, or no tables at all (using <div> tags).
Reply
Dragonfly
Apr 4 2006, 08:38 PM
I opened your site and viewed the source code. I cannot understand why there are two head tags open and closed... when you have already opened body tag you don't need to open another head tag anymore. Secondly, you have table problems. When the main table has 774 pixels as width and that too is divided into 139pixels and 622pixels columns whatever new tables you are going to keep inside the new table cannot have 774 pixels as width anymore. My simple suggestion to you is like this. Do not make one common table for header and body including footer. Let me say two options here: OPTION 1: One is that you have separate tables for header that will include all your banners on top inclusing flash and other pictures on top.. keep them in one table but divided by rows. Fix the width to 774pixels. And make another table for the body part with 774pixels width again. And divide them into 3 columns. The first column for menu, the second column for spacer (make transparent gif file and tuck in there to make space between the menu column and the main body column. And finally make another table for footer with the same width and columns as you wish. Option 2: Make one table that will cover the whole and inside keep each table with width 100% this will solve all the problems. Right now the problem is that you have tried to make columns which are not in uniform with the column above (for example, the main body table has menu column which will take the same space as the header).... This is due to poor table separation. I hope this helps.
Reply
Joe2Chance
Apr 4 2006, 09:06 PM
It's look like you trying to edit an already made php page, thats why all things appear mess up, the doctype itīs not on top, etc. What you need to do is clear all the content of header.php and foot.php (leave them blank), then in the listmembers.php include all the html of the index.htm after all the include(" "); put the html code inside of echo(" html code here "); but remember to change all the " " in the html to ' '. until the part CODE <td width="584" background="images/content_box_bg.jpg" height="79" valign="top"><table border="0" cellpadding="6" cellspacing="0" width="608"> <tr> <td><font color="#252525">Welcome to The Final Chapter webpage! We're looking to be the best raiding guild on this realm. All officers and guild masters have led raids into MC, ZG, Onyxia and BWL. If you want to have fun, make some new friends, and tackle some raid bosses in the process fill out an application in our forums, former raid experience is not required but determination & skill are.<BR>
<CENTER>-Co Guild Masters Kalel & Xempt.</CENTER></font></td> </tr> </table> </td> </tr> delete the CODE <tr> <td><font color="#252525">Welcome to The Final Chapter webpage! We're looking to be the best raiding guild on this realm. All officers and guild masters have led raids into MC, ZG, Onyxia and BWL. If you want to have fun, make some new friends, and tackle some raid bosses in the process fill out an application in our forums, former raid experience is not required but determination & skill are.<BR>
<CENTER>-Co Guild Masters Kalel & Xempt.</CENTER></font></td> </tr> and then in the end of the php code, after the mysql_close; insert the rest of the html, that should work, then do the same to the view news.php. php code should look like this: CODE <?php session_start(); include("something"); include("something");
echo("<html>
<head> <title>The Final Chapter</title> <link rel='stylesheet' href='style.css' type='text/css'> (look that i changed the " to ') <script language='JavaScript1.2'>
more html code
<td width='584' background='images/content_box_bg.jpg' height='79' valign='top'><table border='0' cellpadding='6' cellspacing='0' width='608'> </table> </td> </tr>");
more php code
mysql_close;
echo(" <tr> <td width='584' height='1' bgcolor='#000000'></td> </tr> <tr> <td width='584' height='11'></td> </tr>
the rest of html code ");
exit; ?> It gives a little work, but works fine. Stay well.
Reply
Artem ZHI
Apr 6 2006, 04:53 PM
Install Joomla CMS to your site and you don't have any problem))
Reply
savge17
Apr 6 2006, 10:58 PM
Ok i got some of it fixed, now as you look at it it has a corner hanging out. Thats all I need to get rid of now. Any ideas how? http://finalchapter.uni.cc/listmembers.php
Reply
WindAndWater
Apr 7 2006, 01:57 AM
You have CODE <th align="center" width="20" nowrap="nowrap"> </th>
<th align="left" width="35" nowrap="nowrap"> </th> <th align="left" width="100%"><a href="listmembers.php?o=0.1&filter=none">Name</a></th> <th align="left" width="100"><a href="listmembers.php?o=8.0&filter=none">Rank</a></th> <th align="left" width="40" nowrap="nowrap"><a href="listmembers.php?o=6.0&filter=none">Level</a></th> <th align="left" width="100" nowrap="nowrap"><a href="listmembers.php?o=7.0&filter=none">Class</a></th> <th align="left" width="80" nowrap="nowrap"><a href="listmembers.php?o=1.0&filter=none">Earned</a></th>
<th align="left" width="80" nowrap="nowrap"><a href="listmembers.php?o=2.0&filter=none">Spent</a></th> <th align="left" width="90" nowrap="nowrap"><a href="listmembers.php?o=3.0&filter=none">Adjustment</a></th> <th align="left" width="80" nowrap="nowrap"><a href="listmembers.php?o=4.0&filter=none">Current</a></th> <th align="left" width="70" nowrap="nowrap"><a href="listmembers.php?o=5.0&filter=none">Last Raid</a></th> There are a few problems with this code. 1) The third one down has width="100%" where I think you meant to have width="100" 2) Even assuming that you meant not to have the % sign the widths of all of your tables added up is 795 pixels, and they're all within a table that's only 608 pixels wide, which is in turn within a table cell that's only 584 pixels wide, which is within another cell, which isn't even in a table. Each element must be equal or smaller than the element it's supposed to be in. Additionally you still have the second doctype, head, and body tags buried in the middle of your code. Please let me stress again that this is extrodinarily incorrect and could lead to many problems in your site if you don't remove it. Have you considered using a WYSIWYG editor like frontpage or dreamweaver? That way you could get the layout correct, and then go back in and manually tweek your code.
Reply
Similar Topics
Keywords : website fix webpage- My Website Randomly Went Offline
- (8)
My website was working fine, then when I tried to access it on Core FTP Lite (to upload files) Core
FTP couldnt connect (i've changed my password, but forgot to change it on Core FTP). I
disconnected from Core FTP to try and change my password, but then it couldn't re-connect, and
my website has gone down. Everytime I try and go on, I get the "The page cannot be displayed. The
page you are looking for is currently unavailable." page. However, it is only me who's getting
this....and I can't log in using FTP or access the Cpanel Any help?...
Please Help Immediately! My Website Is Completely Down.
- (1)
Updating Website, Ftp Problems
- (5)
2 problems! a) how do i update my website??? like if i make changes to the code of say my
index.html page, how do i make these changes take place on the website online?? /cool.gif"
style="vertical-align:middle" emoid="B)" border="0" alt="cool.gif" /> how come my ftp uploads my
files to a file under my public_html folder but also under a folder with my user name
(public_html/username ) ??? this makes it so the url of my site isnt www.abc.trap17.com anymore
but www.abc.trap17.com/username/ ---- this makes no sence!!...
Website Still Down.
- (4)
My website is still down and its been about 3-4 days since it has been down. Im just curious to know
whats going on. Also my hosting credits are still going down while the site is down so is there any
way I can get reinbursed for them? Thanks. The site is: http://www.ageofilluminati.com/ Here is
the other url: http://www.childrenofconan.trap17.com ...
Wouldn't It Be The Same Thing As Copying And Pasting From Another Website If We Copy Out Of A Religious Tract?
- (3)
I was reading some of these messages in this forum and I noticed that I had heard some of them
before and when I thought about where I believe it was copied directly from a religious tract
(little hand outs that Christians use to spread their faith) I know that if you copy/paste from a
website it is against trap17's rules but what about this? It is the same thing, plagiarism (tho
technically they most likely have the rights to copy it in any way possible but it still is not
their own writing) Please note I have nothing against Christians or the whole spreading your...
Contradictions In Website Rules
- (2)
Hey there all. Trap17 seems like a great website for free hosting and seems to have a great
community behind it. Anyway I was reading through the terms and conditions before signing up to
these forums and I've also been reading the stickies here and there. I think I've come
across some conflicting rules. One sticky mentions that each host credit you obtain equates to the
number of days you can stay inactive on the forums. On the other hand the terms and conditions of
registering to this website clearly mention that: QUOTE * Stay active (suspension): Once a u...
Website Suspended For Negative Credits
- But it hasn't come back (2)
Okay, well, I let my account lapse for a little while (which I have done in the past as well) and
after getting more hosting credits it usually comes back within a day. Well, I let it lapse like
.03 credits accidentally about a week ago, and I've been posting every day and I'm back in
the positive, but my website has yet to come back so I was just wondering why? Thanks, Cangor...
Problem With Uploading My Website
- my be conection error, or ftp (10)
i am using Absolute ftp client , but that i can not able to conect, i have tried a lot but no
responce, suggest me which ftp is good, and how i can upload my website. is that ftp id is
currect ? ( ftp.capitalheat.biz )...
Will My Website Allowed?
- (5)
i am about to make a blog with links to rapidshare, or any host service which will be films, songs,
softwares, wallpapers etc nothing will be hosted on ur server just links and information in entries
of the blog, will it be allowed? note: just my blogs and entries will be on ur server, none of any
warez or mp3 etc files will be on it! i thought i should ask before i leap =)...
How Long
- does it take for website to update (2)
I edited something in the index to test my sight, its been 15 minutes and still no effect. any one
can check it for me? www.blockwars.trap17.com. Do you get the normal page you get when you sign up
or do you get something different?...
Awarding Credits
- as reward in my website games (4)
Lets say I make a game, can i put credits here as a reward? or is that against rules or policy.
Example: 1st prize in contest x : 50 credits in trap17 this is a small post but it is not spam
/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> hope a manager
or admin anwsers this to be sure /smile.gif" style="vertical-align:middle" emoid=":)" border="0"
alt="smile.gif" />...
Doubts About Hosting I Need!
- I have a webpage but I don't now where host it for free (8)
Hello to all, which happens is that I need to lodge a web page that they have assigned to me as
project in the university. I am a student of Informatic Systems Engineering, and in the course of
Advanced Programming they have assigned the creation of a web page to me. The web page is designed
in Macromedia Dreamweaver, with a database MySQL 5, and programmed in NetBeans, using Struts,
Servlets and the Apache Tomcat 5.0 server. And the quiestion is: Does Trap17 serve me as host
for this web page? ...
Urgent-admin Help Requested******
- Cpanel malfunction-& WEBSITE PROBLEMS (6)
Admin, Have posted a PM 4X today for "Opaque" - each time Cpanel has refused to log my message in
the "Sent" folder. Tried replying to the the previous message from Opaque & tried composing a new
message to him- >> same result - NO MESSAGE SENT!! after clicking the send button. Please
advise as this message string is concerning getting my website functional after ftp upload. -IS
URGENT !! Thanks RGPHNX...
Wordpress Website Help
- (2)
Hi, i need help with design of my wordpress site.Currently i've running wordpress on my top
level domain site.It is running with theme Blix.Though i figured out almost 1/3rd of wordpress users
use this theme.So i dont want to stick wiith this theme,is there any theme simmilar to blix that is
having such nice design? Anybody have modifications for this theme or knows theme like blix style?
By the way i have modified the blix theme into my own colour set and named it as coral,check out my
site http://www.onecore.net After scraping so many tissue papers and search o...
Making A Website with Trap17 hosting
- Fraticacity (2)
Ok. I am really new at this. I know this may sound really stupid. I am trying to figur out how to
host my website on here. Cuase I'm looking for some who can show me how to host styuff on
trap17. Im also looking for someone to show me how to make your own login and registration using
PHP. I would be greatfull if any one showed me the ropes on how to host things on trap17. =) ...
Sig Generator Not Wokring On Trap17 Or Website.
- Sig generation, how to amke it more compatible. (2)
It seems as if these Sig Generattors arent that compatible.
http://www.finalchapter.trap17.com/sigrotator/ is mine right there but I cant link it under my
signature or even link it on my own forums here: www.thefinalchapter.trap17.com/index.htm. I have no
idea why. Help is appreciated. Im just really curious if this was meant to be disabled because of
security reasons....
Website Is Not Working! 1 Day Since Upgrade
- hmmmmm.... (2)
After all my work my website isnt wrking this. 1 day after server re-set it still doent work. My
site is at http://unknownguild.trap17.com or http://unknownguild.trap17.com/home.html admins
can you help me plz. Im anxiuos to get this site up and running. And as soon as I did last week it
isnt working now. Ive tried the HOSTS file but guess what? It doent work. I cna use my site, but
wehat about others.. the whole point of a website is to hav eothers veiw it.. Plz help ASAP. Thanks.
And I dont Mind just getting a new server really, its not my fault that it doent wor...
Website Isnt Working.
- :( (7)
My website isnt working. It was working the day I got it setup but after the forums and the main
site went offline it never returned. Why? Everyone elses works but not mine. also I got a domain for
the site at www.unknownguild.us and the normal domain is www.unknownguild.trap17.com can anyone
please help me? I ahve no idea what went wrong. It just stopped working all of a sudden. Is there
anything you guys can do to like re-set it or soemthing? Plz help! Thanks.
-Savge...
Listed Website
- website examples from TRAP 17 (2)
I think it would be a good Idea for people who are willing to just post there web address. People
would check it out more and also learn a little more about TRAP 17. I dont even know what web
addresses look like. For instance I am going to try a free account soon and see if I should stay
with TRAP 17. Now what is my free account going to look like. Will it be (www.website.trap17.com) or
a real web address (www.website.com). Anyway it would also be good just to be able to check out
other websites. I surf the web mostly for new toys\software and places to buy things a...
Problem With Permissions/website Down
- (4)
Hello, I have a little GREAT problem. My website is down and itīs my fault. I was trying to make
some php panels to update my website without using DW/FTP. A friend is helping me and we talk by
mails. He told me that I had to give write permissions to "images" folder in order to upload images
from my HD to the FTP. So I did it and I saw that didnīt work, so I had the terrible idea (on my
own) to prove that with "www" folder. Iīm using WS_FTP and I went to "www" and did
right-button->chmod. I put some adittional permissions just to try and soon I discovered that my web
j...
Phpbb Takes Up 15mb
- on its website it says it only uses 1mb (7)
I just installed PHP with the fantastico thing in the control panel of my hosting account and
noticed that it was takingup 15mb of the space. now on the phpbb website the full package for the
website is under 1mb. so whats going on here? PLEASE USE DESCRIPTIVE TOPIC TITLES AND
DESCRIPTIONS ...
How To Get Trap17 Hosting Started
- New to building a website and such (9)
Well, I have no idea how to do anything on my hosting site. www.frozen.trap17.com i cant figure
anythign out, how to do a front page, add pages, anything. someone please help "Someone Please
Help" is not a way to get the attention. Changing the title. ...
Website Templates
- (1)
anybody know where i can get free dark grey/black web templates? i cant find anything anywhere.....
Music Samples On Website
- (3)
Hey all! Got a question for you regarding putting music samples on a website. Although putting
mp3 files on a personal website can be dodgy, how about putting just audio samples in streaming
audio? The reason I'm asking this is that I'm planning on making a page about Japanese pop
music - and I'd like to include some audio samples only to give people an idea of what some of
the artists/bands sound like. Any feedback about this is most welcome. Thanks in advance!...
My Computer Is Blocking My Website
- Or not? I am not sure what happens really. (1)
I have a serious problem with my computer since I got hosted with trap17. I bought a domain and
it's pointing to trap17. However, some time of the day, I could not go to my website on the
internet, an error message of 'www.mywebsite.com could not be found. Please check the name and
try again.' Not only that, I also can't upload my files if that's happening. At first, I
thought it was a problem with trap17, but then I found out that i could actually access it with
another computer in the library. My computer seems to be the culprit that blocks the acc...
Whats Wrong With Trap17
- TRAP17 WEBSITE LAYOUT (13)
Is it just me or is the trap17 website layout mucked up, can you scroll to your right, its really
weird, I'm not sure if it's just my computer or is it the trap17 layout itself. From
.::DAMAN::....
Quality Of The Website
- checked by Admin. (4)
Does the quality of the website is checked by the administrator and if it is below some standard is
it allowed or not? Do you provide any suggestion for theme of the website or enhancement of the
features introduced in the website?...
How To Restore Back Up Website?
- including files, folders & database (3)
I would like to know how to restore my site which I BACK UP sometime ago. I have back up the full
directory. I would like to know how to restore everything including MySQL database. Please give line
to line description if possible. Thanks in advance....
Can I Change....
- The subdomain of my website? (2)
Well, I need to know how to change the subdomain of my website...Right now my website is
www.musicstuff.trap17.com but I want to change it to www.darkdesign.trap17.com I do not care if
you have to reset everything....but I still want to keep my package 3 that I have...lol. Can
someone tell me how to do this ...or do this for me?...
Default Page On Website
- (1)
It seems that I can't get rid of the default page on my website. Is there any way to do this?
Click on the link and you'll see what I mean. http://black-hole.trap17.com I have an
index.php, but when I visit my website, it still shows that page. Why is that?...
Looking for website, page, problem, fix, webpage, problem
|
|
Searching Video's for website, page, problem, fix, webpage, problem
|
advertisement
|
|