|
Author |
Message |
Gallo_Pinto
Joined: 15 Jul 2005
Posts: 785
Location: BC, Canada
|
Posted: Sun Nov 13, 2005 10:12 pm Post subject: page displays differnt in IE and Firefox. |
|
|
|
|
|
|
|
BryanDowning
Joined: 05 Jul 2004
Posts: 1554
Location: California, USA
|
Posted: Mon Nov 14, 2005 3:31 pm Post subject: |
|
|
Well, my first suggestion would be to never use Photoshop to output HTML code. I would suggest learning HTML and coding it yourself. There are some very valuable reasons for this: Your pages won't break as often like this, your pages will load faster, and you're just that much cooler.
That being said, IE doesn't like it when you do things like this:
Code: |
<td><img src="blah.gif" height="1" width="1" border="0" alt="blah">
</td>
|
IE interprets that line break after the image as a space and everything goes crazy. It should be like this:
Code: |
<td><img src="blah.gif" height="1" width="1" border="0" alt="blah"></td>
|
That will fix the bulk of your problems. The other big thing is vertical alignment. The default vertical alignment for something is middle. It almost always needs to be top. So on the td cells you're still having issues with add this:
Code: | <td valign="top"></td> |
You specifically need to add that attribute to every td in your second to last row of your first table.
I would just like to emphasize how much I think you should learn HTML. That code is terrible... _________________ Best Regards,
Bryan Downing
bryandowning.com |
|
|
|
|
Gallo_Pinto
Joined: 15 Jul 2005
Posts: 785
Location: BC, Canada
|
Posted: Mon Nov 14, 2005 5:34 pm Post subject: |
|
|
I hear ya but coding isn't really my idea of fun. Anyway thanks for the suggestions (that much hand-writing I think I can handle). I'll try to get back with the results as soon as possible. _________________ brush your hair and comb your teeth |
|
|
|
|
Gallo_Pinto
Joined: 15 Jul 2005
Posts: 785
Location: BC, Canada
|
Posted: Tue Dec 13, 2005 4:16 am Post subject: |
|
|
I've redesigned it. I did as you said to the old page, but then Idecided to redo it anyway. And I have the same problem.
I would really appreciate it if anyone could visit http://trempel.rbsstech.com/ in both Ie and friefox and notice how the gaps betweem the tables change. I want them to look as they do in firefox. Any help with this would be great.
thanks, travis. _________________ brush your hair and comb your teeth |
|
|
|
|
Gallo_Pinto
Joined: 15 Jul 2005
Posts: 785
Location: BC, Canada
|
Posted: Tue Dec 13, 2005 7:02 pm Post subject: |
|
|
last night I thought I had fixed it, but no such luck. It's still all messed up. I really have no idea why, the code looks fine to my unexperienced eye.
thanks again for any help anyone can offer. _________________ brush your hair and comb your teeth |
|
|
|
|
Gallo_Pinto
Joined: 15 Jul 2005
Posts: 785
Location: BC, Canada
|
Posted: Wed Dec 14, 2005 7:29 pm Post subject: |
|
|
Okay, sorry guys, I've got it fixed.
I was using small spacer images to put a gap between tables, so I just had to take the first line of table code and put it up next to the spacer image code.
Sorry to make such a long thread _________________ brush your hair and comb your teeth |
|
|
|
|
|