| | |||||
| ||||||||
| Web Design Discussion Discussion of web design techniques, advice, browser issues, software, design firms. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| New Member Join Date: Mar 2005
Posts: 4
![]() | |
| |
| | #3 (permalink) |
| Senior Member Join Date: Nov 2004 Location: The Land of Oz
Posts: 1,679
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Cant be specific without seeing the code. Can you post a url? One of the basic rules when you produce a website, check it out in as many differenet browsers and versions of them as possible. Did you use any strictly IE tags etc? etc etc. |
| |
| | THREAD STARTER #4 (permalink) | ||||
| New Member Join Date: Mar 2005
Posts: 4
![]() |
I have no tables on the page. Just (in VS.NET speak) a panel, three combo-boxes (drop down lists) and a couple of buttons. In the HTML code sent to the browser, if IE requests the page, i get (for example, on DropDownList1): <select name="DropDownList1" onchange="__doPostBack('DropDownList1','')" language="javascript" id="DropDownList1" class="DropDown" style="background-color:Transparent;font-family:Arial;font-size:X-Small;height:40px;width:272px;Z-INDEX: 101; LEFT: 600px; POSITION: absolute; TOP: 64px"> <option value="--- Select year group ---">--- Select year group ---</option> <option value="7">Year 7</option> <option value="8">Year 8</option> <option value="9">Year 9</option> <option value="10">Year 10</option> <option value="11">Year 11</option> </select> If the page is requested by FireFox, I get: <select name="DropDownList1" onchange="__doPostBack('DropDownList1','')" language="javascript" id="DropDownList1" class="DropDown" style="Z-INDEX: 101; LEFT: 600px; POSITION: absolute; TOP: 64px"> <option value="--- Select year group ---">--- Select year group ---</option> <option value="7">Year 7</option> <option value="8">Year 8</option> <option value="9">Year 9</option> <option value="10">Year 10</option> <option value="11">Year 11</option> </select> The key thing is that there is no width or height tag in the style list. Why does it not get sent if FF requests the page? The ASP.NET code is: <asp:dropdownlist id="DropDownList1" style="Z-INDEX: 101; LEFT: 600px; POSITION: absolute; TOP: 64px" runat="server" Width="272px" Height="40px" AutoPostBack="True" Font-Names="Arial" Font-Size="X-Small" ????: NamePros.com http://www.namepros.com/web-design-discussion/77300-wierd-firefox-problem-help.html BackColor="Transparent" CssClass="DropDown"> <asp:ListItem Value="--- Select year group ---">--- Select year group ---</asp:ListItem> <asp:ListItem Value="7">Year 7</asp:ListItem> <asp:ListItem Value="8">Year 8</asp:ListItem> <asp:ListItem Value="9">Year 9</asp:ListItem> <asp:ListItem Value="10">Year 10</asp:ListItem> <asp:ListItem Value="11">Year 11</asp:ListItem> </asp:dropdownlist> Sorry about the formatting, hope you can see what's going on there though. I would love to post a URL to the site, but as it contains loads of personal data I can't do that... Chris | ||||
| |
| | #5 (permalink) |
| Senior Member Join Date: Jan 2005 Location: USA
Posts: 1,149
![]() ![]() | Do you use dreamweaver? If you dont you should get the trial and use it to specifically see the errrors in the code. http://www.macromedia.com/go/trydreamweaver |
| |
| | THREAD STARTER #6 (permalink) | ||||
| New Member Join Date: Mar 2005
Posts: 4
![]() |
In dreamweaver, it showed that the .aspx file didn't have the width and height tags within the style="..." line, but rather as separate entries. IE must have been happy with these, and reformatted the HTML as it came in to display the items as VS.NET intended, whereas FF was working with what it was sent, and only understood the attributes within the style="..." bit. ????: NamePros.com http://www.namepros.com/showthread.php?t=77300 Anyway, it was much easier to see this in the DreamWeaver layout, and this has allowed me to edit my aspx files, and now the site works on FF as well as IE! Hooray! Thanks for the rapid help guys. Chris | ||||
| |
| | #8 (permalink) |
| NamePros Regular Join Date: Dec 2004 Location: QLD, Australia
Posts: 713
![]() | Also glad that Firefox wasn't actually displaying the page "wrongly". ![]() I've seen IE do a lot of other things like this, where it thinks it knows best and applies values to elements it was never told to. This may be good in some ways, but it means people could continue to use bad code without knowing. Anyway, good to here you sorted it out. |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Why We Didn't Have A Drug Problem | dgridley | The Break Room | 0 | 03-13-2005 08:26 AM |
| Problem with firefox display - div width | volos | Web Design Discussion | 3 | 02-03-2005 10:10 AM |
| For those of you who dont use FireFox | GamingHybrid | The Break Room | 21 | 09-12-2004 01:51 AM |
| Firefox 1.0 scheduled for September 14th | aww | Industry News | 3 | 07-15-2004 06:41 PM |
| Problem with Mozilla Firefox | Ace02 | The Break Room | 1 | 06-23-2004 10:30 PM |