| | |||||
| ||||||||
| Website Development Development concepts, scripts, sponsors and affiliate programs. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Munky Designs Join Date: May 2005
Posts: 996
![]() ![]() ![]() | conflicts of browser ok, i have a tbale, if i set its width, it looks messed up in mozilla, and fine in IE. if i dont set the width, it looks fine in mozilla, but not in IE. I was wondering if anyone knows a way around this. here is the code for the page: PHP Code: Thanks, |
| |
| | #2 (permalink) |
| Pro Coder & Designer Join Date: Apr 2005 Location: Netherlands
Posts: 967
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | well you should upload the whole site, including images and the other php files. otherwise we cant help you and see what the problem is ![]() PM the url when you uploaded
__________________ aween web development |
| |
| | #3 (permalink) |
| NamePros Regular Join Date: Dec 2004 Location: QLD, Australia
Posts: 713
![]() | Ok, do you know what colspan and rowspan means? Your table seems to be poorly coded, what you need to do is create a new table from scratch without merging any cells or rows. From what I can see, you want 5 rows and 3 columns, therefore you should start with this: Code: <table border="1">
<tr>
<td>top left</td>
<td>top mid</td>
<td>top right</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>
<tr>
<td>bottom left</td>
<td>bottom mid</td>
<td>bottom right</td>
</tr>
</table> ????: NamePros.com http://www.namepros.com/showthread.php?t=116785 The border is used so you can see where each cell is. When you've set the sizes for the table and cells, then you can merge the side columns together. Which looks like this: Code: <table border="1">
<tr>
<td rowspan="5">left</td>
<td>top mid</td>
<td rowspan="5">right</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>bottom mid</td>
</tr>
</table> Hope that helps. |
| |
| | THREAD STARTER #4 (permalink) |
| Munky Designs Join Date: May 2005
Posts: 996
![]() ![]() ![]() | ok, cheers for the feedback Rowan W, they are coded fine. I do know what rowspan and colspan are, and, s far as I can see, the only bad coding there is the lack of css. I realised the problem is with the table width = 100 %. ive set each column to have an exact pixel width, therefor conflicting with the 100% thanks for the help |
| |
| | #7 (permalink) |
| NamePros Member Join Date: Aug 2005
Posts: 198
![]() | um it's weird tho like the other time i made a layout and it was perfectly nice and fine in IE then my friend who used mozilla viewed it and was like Wow ur layout's messed up. so i checked it with mozilla and indeed it was. Like i had 2 divs and somehow they got switched around and one got stucked on top of the other when they should be separated. it was just really strange and i dont understand y. |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Acoo Tabbed Browser for IE | dgridley | Free Resources | 0 | 06-16-2005 11:47 AM |
| msn.com? new browser??? | LeeRyder | The Break Room | 7 | 04-22-2005 09:29 AM |
| 2 Huge Name Forsale | Vegas Entertainment | Domains For Sale - Make Offer | 9 | 09-21-2004 02:37 PM |
| Get YourCompanyName Branded Browser for your customers | uv3net | For Sale / Advertising Board | 0 | 01-22-2004 11:12 AM |