Jul 25, 2008

Help With My Template [resolved]

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > HTML, XML etc..

free web hosting

Help With My Template [resolved]

Albus Dumbledore
So i was bored, and i found this template on some site and decided to attempt and code it....

I've gotten pretty darn far lol I've gotten soo far that it looks perfect in Firefox for me biggrin.gif but then i go to look at it in internet explore and I'm blinded and i don't know how to fix it.

http://school-stuff.org/test/test.html

give it a look in firefox, then in internet explore and any advice is welcome!!!!

Reply

truefusion
Doesn't look good in Opera either. I say fix it up in Opera and you might get it to look perfect in Firefox and in Internet Explorer just by doing so. I'd look at the code and try to tell you what i find wrong; however, not now, need to do something else; sorry, a bit busy today. wacko.gif

Reply

jlhaslip
Start by adding a Doc Type so IE6 is not using Quirks Mode.

It looks like HTML 4.01 Transitional might be the right Doc Type.

Reply

Saint_Michael
Well I was able to fix most of the problems, you just have to tweak it now so the right side border with align with each other and the realign the text which will most like be done in CSS and not in the tables.

HTML
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link
href="Testing-Template_files/css.css" type="text/css" rel="stylesheet" />
</head>
<body>
<table cellspacing="0" cellpadding="0" width="697" border="0">
  <tbody>
    <tr>
      <td colspan="4"><img src="Testing-Template_files/header.png" /></td>
    </tr>
    <tr id="header2">
      <td width="140" colspan="3" height="85">Navigation</td>

    </tr>
    <tr id="fill">
      <td width="700px">
      Navigation<br>
      Navigation<br>
      Navigation<br>
      Navigation<br>
      </td>
    </tr>
    <tr>
      <td colspan="4"><img
src="Testing-Template_files/footer.png" /></td>
    </tr>
  </tbody>
</table>
</body>
</html>


CSS
CODE
BODY {
    MARGIN-TOP: 0px; BACKGROUND: #6b4929; MARGIN-LEFT: 0px;
}
#fill {
    BACKGROUND: url(fill.png);
    background-repeat:repeat-y;
}
#header2 {
    BACKGROUND: url(header2.png);
    width:700px;
    background-repeat:no-repeat;
}


 

 

 


Reply

truefusion
QUOTE(Saint_Michael @ May 12 2007, 10:04 AM) *
CODE
<tr id="fill">
      <td width="700px">
      Navigation<br>
      Navigation<br>
      Navigation<br>
      Navigation<br>
      </td>

Why is the width 700px when it is only for the navigation? Where's the content supposed to go to? In fact, looking at the code, there's no room at all for it.



Here's what i did, check it out in IE:
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<link href="css.css" type="text/css" rel="stylesheet">
</head>
<body>
<table cellspacing="0" cellpadding="0" width="697" border="0">
<tbody>
<tr>
<td colspan="4"><img src="site_files/header.png" alt=""></td>
</tr>
<tr>
<td class="header2"></td>
<td rowspan="2" style="width: 540px; padding-top: 5px;" valign="top">
HIHIHIHIHIHIH<br>
HIHIHIHIHIHIH<br>
HIHIHIHIHIHIH<br>
HIHIHIHIHIHIH<br>
HIHIHIHIHIHIH<br>
HIHIHIHIHIHIH<br>
</td>
</tr>
<tr>
<td class="fill" align="left" valign="top">
Navigation<br>
Navigation<br>
Navigation<br>
Navigation<br>
</td>
</tr>
<tr>
<td colspan="4"><img src="site_files/footer.png" alt=""></td>
</tr>
</tbody>
</table>
</body>
</html>


CSS:
CODE
BODY {
margin-top: 0px;
background: #6b4929;
margin-left: 0px;
}

.fill {
background: url(http://school-stuff.org/test/site_files/fill.png) repeat-y;
width: 157px;
padding-left: 15px;
}

.header2 {
background: url(http://school-stuff.org/test/site_files/header2.png);
background-repeat: no-repeat;
height: 85px;
width: 157px;
}

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Similar Topics

Keywords : template resolved

  1. Template Coding Issue - (7)
  2. How To Display Php Code [resolved] - Html Help With Php Codebox (8)
    I'm trying to make codebox for my guestbook so that users can post PHP code inside.. I tried
    many versions but none of them works If i use , or i can display HTML code, but when i try to
    write PHP code it executes it does not display.. There is a way to make swap for You have codebox
    in forum to display php how can i make that?! thanks...
  3. Yet More Help With My Websites Template - (4)
    now i need help with this template /biggrin.gif" style="vertical-align:middle" emoid=":D"
    border="0" alt="biggrin.gif" /> What i want is for the layout to be touching both the top of the
    browser, and the left side of the browser. It looks fine now, but when i put the Doctype in
    QUOTE it adds a space between the top and side of the layout... any suggestions? or am i
    just going to have to deal without a doctype? lol...
  4. Help With My Websites Template - (5)
    I posted this earlyer, and the post wouldn't show..... so i am trying again since the other post
    has been hidden/deleted --------------THIS ERROR ONLY OCCURS IN FIREFOX
    http://www.hogwartsmagic.net/awards/test/ If you cant tell, it looks a little bit weird yes? and i
    am not talking about the red logo, or the fact there is not titles for the nav menu's yet... and
    i don't really care about that yet, right now all i am worried about is coding it... so i was
    hoping that maybe someone could help me figure out why that gap is there between the header and the
    b...
  5. Template Coding - Is this right place to post? (4)
    I duno if im posting in right area i asked in shoutbox but not to much of a response..lol anyways i
    followed a photoshop tutorial i found on google for making a clan template i made the template but
    the tut ended when u need to i think they call it slicing i know i need to code the theme now. is
    their a program out their to help me code this theme or what??? ...
  6. Which Template Is Nicer - Help (8)
    I need ure help as after all you are the ideal user to this website. Basically weve decided to
    revamp our site with a new template. One of the admins has come up with this skin here
    http://zmbworld.co.uk/temp or we could use for a theme http://solidhelium.com/index.php both
    are very good. Note we wont be ripping http://solidhelium.com/index.php skin we will use it as a
    guide. We will redesign it using diffrent images etc. So u guys decide Please vote now
    /blink.gif' border='0' style='vertical-align:middle' alt='blink.gif' /> ...
  7. Template Problem - (6)
    i have a skin installed on My Webpage , (oppermine gallery), called digital_flow, but i would like
    to have the left column, moved to the right side... does anyone knows how to do this? I know i have
    to edit 'template.html' , but not in a specific way... /blink.gif' border='0'
    style='vertical-align:middle' alt='blink.gif' /> If you need more information, please ask
    /cool.gif' border='0' style='vertical-align:middle' alt='cool.gif' /> . thanks i advance, i would
    really like to solve this! /smile.gif' border='0' style='vertical-align:middle' alt='smile....
  8. Rfid Package/template - (1)
    I’m looking into RFID for some stuff. Is anyone here familiar with it? It would be nice if there is
    some kind of package for it. Let’s say that you have a bunch of tags; when you have a new customer
    or new item, you create new id for him/her or the item, and you create the tag that contains that
    id. You give it to the customer or put it on the item. Next time you just scan it and you can
    retrieve the id. There is something like this for barcode. It has a set of hardware and also it has
    source code and/or API for this. Is there some package for RFID for this? I’d appre...



Looking for template

Searching Video's for template
advertisement



Help With My Template [resolved]



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE