UL Menubar Positions properly in Firefox but NOT in IE

Hi, I have problems with my ul menu bar. It appears correctly in dreamweaver and firefox but not in IE 9. Below screenshots of what im looking to achieve. I've placed the bar menu ul where I want (horizontally fall rather than vertical) and expressed its absolute position, but for some reason, IE does not like it. If there's someone out there who would be willing to help me I would me very grateful! IM fairly competent with dreamweaver cs5.5. Thank you very much!

Here is Firefox works correctly:

sprybar_test_01_FF_WORKING.jpg

Here are so Internet Explorer does not properly:

sprybar_test_02_IE_NOTWORKING.jpg

Here's the code for menu bar:

< td height = "27" align = 'right' nowrap = "nowrap" > < ul id = "MenuBar1" class = "MenuBarHorizontal" >

"< li > < a class ="MenuBarItemSubmenu"href =".. / html/index.html "> links < /a >"

< /li >

"< li > < a href =".. / html/portfolio.html "> contact < /a > < /li >"

"< li > < a class ="MenuBarItemSubmenu"href =".. / html/profile.html "> profile < /a > < /li >"

"" < li > < a href = "... / html/contact.html ' class ="MenuBarItemSubmenu"> < /a > projects

< ul >

< li > < a href = "#" > industrial < /a > < /li >

< li > < a href = "#" > institutional < /a > < /li >

< li > < a href = "#" > commercial < /a > < /li >

< li > < a href = "#" > home < /a > < /li >

< li > < a href = "#" > award-winning < /a > < /li >

< /ul >

< /li >

"< li > < a href =".. / html/links.html "> home < /a > < /li >"

< /ul > < table >

Here is the script of the menu bar:

@charset "UTF-8";

/ * Sections - version 0.6 - Pre - Release Spry 1.6.1 * /.

/ * Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

The AVAILABLE INFORMATION: Describes the box model, positioning, the order

*******************************************************************************/

/ * The outermost container for the menu bar, an area of width auto without margin or padding * /.
UL. MenuBarHorizontal
{
margin: 0;
padding: 0;
list-style-type: none;
do-size: 100%;
cursor: default;
Clear: right;
float: right;
position: relative;
}
/ The menu bar value active with this class, currently the definition of z-index to accommodate IE rendering bugs: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html * /.
UL. MenuBarActive
{
z-index: 1000;
}
/ * Menu item containers, position of children relative to this container and are a fixed width * /.
UL. MenuBarHorizontal li
{
margin: 0;
padding: 0;
list-style-type: none;
do-size: 100%;
cursor: pointer;
Width: 80px;
float: right;
height: 27px;
text-align: right;
}
/ * Submenus should appear under their parent (top: 0) with a higher z-index, but they are first the left side of the screen (-1000em) * /.
UL. MenuBarHorizontal ul
{
margin: 0;
padding: 0;
list-style-type: none;
do-size: 100%;
z index: 1020;
cursor: default;
position: absolute;
left:-1000em;
top: 27px;
display: inherit;
}
/ * Submenu that shows with the designation of the class MenuBarSubmenuVisible, we put the car left so it happens on the screen below its parent menu item * /.
UL. MenuBarHorizontal ul. MenuBarSubmenuVisible
{
left:-200px;
top: 27px;
position: absolute;
}
/ * Container of menu items are same fixed width parent * /.
UL. MenuBarHorizontal ul li
{
Width: 120px;


}
/ * Submenus should appear slightly overlapping to the right (95%) and upward (-5%) * /.
UL. MenuBarHorizontal ul ul
{
position: absolute;
margin:-5% 0 0 95%;
}
/ * Submenu that shows with the designation of the class MenuBarSubmenuVisible, we have left to 0, it is on the screen * /.
UL. MenuBarHorizontal ul. MenuBarSubmenuVisible ul. MenuBarSubmenuVisible
{
left: auto;
top: 0;
}

/*******************************************************************************

INFORMATION DESIGN: Describes the set of colors, borders, fonts

*******************************************************************************/

/ * Submenu containers have borders on all sides * /.
UL. MenuBarHorizontal ul
{
height: 27px;

}
/ * Menu items are a light grey block with padding and no text decoration * /.
UL. MenuBarHorizontal a
{
display: block;
background-color: #FFF;
color: #003366;
text-decoration: none;
height: 17px;
do-family: Verdana, Geneva, without serif.
do-size: 12px;
text-transform: lowercase;
vertical-align: middle;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
padding-left: 10px;
}
/ Components menu that have mouse over or focus have a blue background and white text * /.
UL. MenuBarHorizontal a: hover, ul. MenuBarHorizontal a: focus
{
background-color: #FFFFFF;
height: 17px;
do-family: Verdana, Geneva, without serif.
do-size: 12px;
color: #FF9900;
}
/ * Menu items that are opened with the submenus are on MenuBarItemHover with a blue background and white text * /.
UL. MenuBarHorizontal a.MenuBarItemHover, ul. MenuBarHorizontal a.MenuBarItemSubmenuHover, ul. MenuBarHorizontal a.MenuBarSubmenuVisible
{
background-color: #FFFFFF;
}

/*******************************************************************************

Submenu INDICATION: styles if there is a submenu in a given category

*******************************************************************************/

/ * Menu items that have a submenu have the MenuBarItemSubmenu class designation and are set to use a positioned background the far left (95%) and vertically centered image (50%) * /.
UL. MenuBarHorizontal a.MenuBarItemSubmenu
{
background-repeat: no-repeat;
background-position: 50 95%;
height: 17px;
}
/ * Menu items that have a submenu have the MenuBarItemSubmenu class designation and are set to use a positioned background the far left (95%) and vertically centered image (50%) * /.
UL. MenuBarHorizontal ul a.MenuBarItemSubmenu
{
background-image: url (SpryMenuBarRight.gif);
background-repeat: no-repeat;
background-position: 50 95%;
}
/ * Menu items that are opened with the submenus have the designation of the MenuBarItemSubmenuHover class and are set to use a background image "hover" positioned on the far left (95%) and centered vertically (50%) * /.
UL. MenuBarHorizontal a.MenuBarItemSubmenuHover
{
background-repeat: no-repeat;
background-position: 50 95%;
height: 17px;
}
/ * Menu items that are opened with the submenus have the designation of the MenuBarItemSubmenuHover class and are set to use a background image "hover" positioned on the far left (95%) and centered vertically (50%) * /.
UL. MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
background-image: url (SpryMenuBarRightHover.gif);
background-repeat: no-repeat;
background-position: 50 95%;
}

/*******************************************************************************

BROWSER HACKS: hacks below should not be changed, unless you are an expert

*******************************************************************************/

/ * HACK FOR IE: to ensure that sub menus show above form controls, underpin us each submenu with an iframe * /.
UL. MenuBarHorizontal iframe
{
position: absolute;
z index: 1010;
Filter:alpha(opacity:0.1);
}
/ * HACK FOR IE: to stabilize the appearance of the menu items. the slash in the float is to keep IE 5.0 analysis * /.
@media screen, projection
{
UL. MenuBarHorizontal li. MenuBarItemIE
{
display: inline;
f\loat: right.
Background: #FFF;
}
}

Nancy was 100% correct.

However, to give you a little of a sudden boost, try adding the following inside sections

UL. MenuBarHorizontal ul li {}

display: block;

float: none! important;

Width: auto;

white-space: nowrap;

border-bottom: 1px solid #EEE;

}

UL. MenuBarHorizontal ul. {MenuBarSubmenuVisible}

left: auto;

}

This can give you the desired result, but it certainly isn't the perfect solution.

Tags: Dreamweaver

Similar Questions

  • Why does my site display properly in Firefox but not Safari/Chrome?

    I have looked through all my code and do not understand why my previews site perfectly well in Firefox, but in Safari or Google Chrome all elements of the site work but the images that make up the background appear empty or with a blue question marks in a box on them.  I made the site by slicing layers in Photoshop then saved the HTML as a template and added the relevant divs.

    It displays a good overview on Dreamweaver as well but it is precisely these browsers on that it does not work.  It is used to preview very well on these browsers while I was doing it until I added the flash element to it, so I don't know if this has something to do with it, although all Flash elements appear and function ok.

    methumeddwl wrote:

    Thanks SnakEyes, I managed to get rid of the Alt error now.  My structure automatically becomes a tabular presentation due to the importation of the slices directly from Photoshop in a fixed layout?  All of a sudden I have all these new upcoming errors for no leftmargin, topmargin, marginWidth don't and marginheight as well as the height, so it would be ok if I just deleted all references to the latter in the code?

    Nancy Merci for these links to page layouts ready to use, they will definitely come in handy for my next site.  As I want my site to be a fixed 1024 x 700 does what a function table plan?  I want it be fixed instead of liquid that I want all the Flash animations to show in specific locations on the site.

    This is why you should not export the HTML from Photoshop.  To answer your question that exports only Photoshop like HTML 4.01, which is why he has these attributes.  In addition, everything is an image in a table cell, which leads to many problems.  Learn how to cut out pictures and use everything that CSS can offer will make better code.

  • Why do the topics become Chinese when I access my email via Firefox but not Internet Explorer?

    Why do the topics become Chinese when I access my email via Firefox but not Internet Explorer?

    Hello, this is a display caused the extension Advisor default McAfee site - please try to disable or remove that in case you have now until there's a mcafee update that may resolve the problem.

    http://service.McAfee.com/faqdocument.aspx?ID=TS100162
    https://community.McAfee.com/thread/76071

  • the site theme is problem with firefox, but not any problem of chrome with!

    the site theme is problem with firefox, but not any problem of chrome with!
    for ex: http://haftegy.ir
    How to fix?

    Wow sorry! IM update firefox to the latest version and my problem is solved.
    Thank you very much.

  • Our website gets a red screen, the 'attack page' when accessed via Firefox, but not learn it happened on many computers. Can you please tell me what is happening and how to fix it?

    Attack page! Since Firefox, but not know

    What happened when Google visited this site?

       Of the 5 pages Google tested on the site over the past 90 days, 2 page(s) resulted in malicious software being downloaded and installed without user consent. The last time Google visited this site was on 2011-11-05, and the last time suspicious content was found on this site was on 2011-11-05.
    
       Malicious software includes 1 scripting exploit(s), 1 trojan(s), 1 exploit(s). Successful infection resulted in an average of 6 new process(es) on the target machine.
    
       Malicious software is hosted on 2 domain(s), including passinggas.net/, delicatecurrant.mysecondarydns.com/.
    

    Works for me in Firefox 3.6.x and 8.0 Firefox and Google Chrome.

    What is the current state of the list for www.divisionofpsychotherapy.org?

    This site is not currently listed as a suspect.

  • Why FP 10 works with firefox but not with IE8

    I down loaded as follows to uninstall PS xp, FP plugin and debug FP of the link in one of your answers. now I can watch YouTube with firefox but not with IE8. You asked me before if I was using 16 bits. What and how do I know? Please help I want to just watch YouTube on IE!

    Hi, Shag, I gave you the instructions that you need, but you keep away from further discussions and lack of messages and your information is scattered. So you don't take the time to read even the threads you started! Nobody has the time to search your information everywhere in the forum, then you did not bother to answer when I answered you. You answered once, but until you take back any use.

    If you are looking for a solution with a single click, you are looking for for a long time.

    Kind regards

    eidnolb

  • The site that is integrated within a Web site, works for Firefox but not in IE

    I want to display another site within my site (in my head),

    "Code is: < object data ="http://WEBSITE ADDRESS"width ="1000"height ="600"" > < embed src = "ADDRESS http://www.WEBSITE" width = "1000" height = "600" > < / embed > error: embedded data could not be displayed. < / object >

    I can see this good in Firefox but not in IE. Also in Dreamweaver, I get a report of validation of the name of the tag: "embed" not found in the currently active versions. [XHTML Transitional 1.0]

    I don't know why it works in a browser, but not another, and IE is the one that we really need to work.

    Note that uppercase letters in the code have been changed since the address of actual website for forum purposes. Any help much appreciated.

    Use an inline frame or

  • FlvPlayer works with FireFox but not with IE

    Hello

    I created an FLV Player to play remote. FLV movie. It works with Firefox but not with Internet Explorer 6 or 7. In fact, when I test locally on my desktop with local (on my desktop). File FLV movie player works in Internet Explorer. The problem seems to be my Web site, when reading remotely. FLV file, it only works with Firefox.

    Try my Web site with Firefox and IE 6-7 and you will see only works with Firefox. Movie player (right section) to this remote file access: http://www.wikiguitarist.com/wikiguitarist/images/9/9a/CanonFuntwo.flv .

    Since it is a Wikimedia site HTML code is generated from a PHP file. Here is the code that generates the HTML code.

    Of Internet Explorer browser only interpret the tag: < embed >?
    Why IE has problem to play remotely. File FLV and not Firefox?

    Any idea, suggest code, suggest HTLML, action script...?

    Thank you
    Alain



    Hi guys,.

    Thank you very much, Jeckyl, you were right, it seems that only FLASVARS is allowed. Nevertheless, I will try to test if I can pass more than one variable/value less a statement of FLASVARS. For the moment, leaving only a statement of FLASVARS the video works fine with IE and Firefox. I'll do a little cleanup, it is true that my generated HTML code is a bit messy.

    Thanks to WindShadow75 for your answer, now you see it works because I removed the additional declaration of FLASVARS.

    Several guys from tanks, it is appreciated!

    WikiGuitarist

  • GasBuddy web site not working properly with firefox, but works very well with Explorer

    I noticed when I load the site gasbuddy.comweb, it does not work properly. It does not load, simply do not perform as it should. When I try to use gasbuddy.com to explore 9, it works very well. I already tried to work in safe mode and it does not solve the problem with gasbudy.com. Any suggestions on how to solve the problem? I made a discovery, and I'm very careful about deleting my cookies. It seems that when I do the procedure, I'm losing too much info on some web sites - weather.comweatherunderground, etc.. Just do not know how to delete cookies for a problem with the cause of other problems? Thank you.

    Could check you your zoom here:

    ALT + v (open the menu Classic view) > Zoom > Zoom text only

    If I have this on (checked) then the middle column moves to the right and superimposed on the right column. If I have that turned off, then the page zoom correctly.

  • Downloading files over 2 meg are missing in Firefox but not Chrome or IE

    I have a problem when using Firefox to download files in cPanel and even in WordPress when adding themes or plugins. It will download WordPress plug-ins, but I think the point that it starts failing is when the plugin zip file is complete 2meg. It is not related to the server I checked it it works fine in Chrome and IE.

    I refreshed Firefox and deleted all cookies and cache several times.

    I think it may have started after upgrading Windows 10 but not positive.

    Separate the issue;
    Shows details of the system;

    Plug-ins installed

    Adobe PDF plugin for Firefox and Netscape 15.8.20082
    Adobe PDF plugin for Firefox and Netscape 10.1.15

    Having multiple versions of a program can cause problems.
    You must remove older programs. Then download the current full installer.

  • YouTube-nocookie field has problems in Firefox, but not in Google Chrome

    This problem just started a few days ago. This problem appears in embedded videos who have worked for months, at least.

    I use the YouTube of incorporation iframe method. When I use youtube-nocookie area, which is an option that YouTube itself offer to me, when I try to play the embedded video I get the message ' year error occurred, please try again later. " "< a target ="_blank"href ="https://support.google.com/youtube/answer/3037019?p=player_error1 & rd = 1"> learn more < /a >."

    More information is a link to https://support.google.com/youtube/answer/3037019?p=player_error1 & rd = 1 that this link is no help.

    I'm using Firefox 36.0.1. There is no problem with the same video built into Google Chrome. My research Google about this problem never took me to an item on the support page of Mozilla, but I think I'll watch it then.

    Here is a link to a post where I see the problem.

    http://ssgreenberg.name/PoliticsBlog/2015/03/04/Sen-Warren-to-GOP-stop-ambushing-workers-rights/

    Even when I use the link with youtube-nocookie directly in the toolbar URL in Firefox, I get a blank page. If I take the nocookie - of the domain in the address bar, the video plays.

    The problem with YouTube is that the http://www.youtube.com/watch?v=TLT2nV3sWtw file exists, and you will get the correct video.

    Make a right click on the drive in window displays the URL of the video.
    https://www.YouTube-Nocookie.com/watch?feature=player_embedded & v = TLT2nV3sWtw

    In the iframe, I had https://www.youtube-nocookie.com/embed/TLT2nV3sWtw. This file exists on www.youtube-nocookie. For Firefox, YouTube changes the request to https://www.youtube-nocookie.com/watch. Notice the word to embed watch. This file exists on youtube.com, but not on youtune - nocookie.com. This is in contrast to the other file that exists in the two areas.

    On Google Chrome, on the same iframe, when I right click on the video player to copy the URL, I get https://www.youtube.com/watch?v=TLT2nV3sWtw. So the nocookie - has been deleted for Google Chrome, but not Firefox. It is a 'mistake' of obviouslty YouTube.

  • Dysfunctions of the link in Firefox, but not in another browser

    The "Comment" link on the SAIAB blogs. AC.za works as expected at the opera and IE, but not in Firefox.

    Try this page, for example:

    http://www.NPR.org/blogs/13.7/2014/07/16/331974524/what-the-world-needs-now-is-a-new-enlightenment

    • In Firefox, clicking on "Comment" just scroll down, the current page without showing the comments section.
    • In the opera, by clicking on the box 'Commentary' opens the comments section.

    This has been a problem for these past few months...

    Thank you

    Roy Lipscomb

    I tried the page. I pressed comments, and expanded down page for
    the first comment.

  • Text that appears correctly in firefox, but not in safari

    Hi guys,.

    I am new to the forum and had a search to see if I could find any wires that may help me.  I had no luck so apologies if the questions asked a million times and I just don't find!

    My problem is that the text is moved when I saw my site in safari (see below)

    Screen shot 2011-10-20 at 02.20.32.png

    But not when I saw in firefox (see below)

    Screen shot 2011-10-20 at 02.21.40.png

    Here is the code:

    "< html > <!-InstanceBegin template="/Templates/main_layout.dwt ' codeOutsideHTMLIsLocked = 'false'->

    < head >

    <!-InstanceBeginEditable name = "doctitle"-->

    background1 < title > < /title >

    <! - InstanceEndEditable - >

    < meta http-equiv = "Content-Type" content = text/html"; charset = iso-8859-1 ">"

    < link href = "site_layout.css" rel = "stylesheet" type = "text/css" > "

    < link href = "site_layout_content.css" rel = "stylesheet" type = "text/css" > "

    <!-InstanceBeginEditable name = "head"->

    <! - InstanceEndEditable - >

    < / head >

    < body bgcolor = "#FFFFFF" leftmargin = "0" topmargin = "0" marginWidth = "0" marginheight = "0" >

    <! - except for the Web Slice (background1.psd) components - >

    < div id = "site_layout" >

    < table width = "1200" height = "1001" border = "0" align = "center" cellpadding = "0" cellspacing = "0" id = "Table_01" >

    < b >

    < td rowspan = "9" > < a href = ". dj_contact.html" > < img src = "images/leftside.jpg" width = "262" height = "1000" alt ="" > < /a > < table > "

    < td colspan = "16" >

    < img src = "images/header_logo.jpg" width = "672" height = "288" alt ="" > < table > "

    < td rowspan = "9" >

    < img src = "images/rightside.jpg" width = "266" height = "1000" alt ="" > < table > "

    < /tr >

    < b >

    < td colspan = "4" > < a href = "/ dj_home.html" > < img src = "images/home_btn.gif" width = "100" height = "71" alt ="" > < /a > < table > "

    < td >

    < img src = "images/sitelayout2_05.gif" width = "5" height = "71" alt ="" > < table > "

    < td colspan = "4" > < a href = "/ dj_aboutme.html" > < img src = images/aboutme_btn.gif"" width = "151" height = "71" alt = "" > < /a > < table > "

    < td >

    < img src = "images/sitelayout2_07.gif" width = "7" height = "71" alt ="" > < table > "

    < td > < a href = "/ dj_mixes.html" > < img src = images/mixes_btn.gif"" width = "103" height = "71" alt = "" > < /a > < table > "

    < td >

    < img src = "images/sitelayout2_09.gif" width = "9" height = "71" alt ="" > < table > "

    < td > < a href = "/ dj_testimonials.html" > < img src = "images/testimonials_btn.gif" width = "182" height = "71" alt ="" > < /a > < table > "

    < td >

    < img src = "images/sitelayout2_11.gif" width = "7" height = "71" alt ="" > < table > "

    < td colspan = "2" > < a href = "/ dj_contact.html" > < img src = images/contact_btn.gif"" width = "108" height = "71" alt = "" > < /a > < table > "

    < /tr >

    < b >

    < td colspan = "16" >

    < img src = "images/undertab.jpg" width = "672" height = "17" alt ="" > < table > "

    < /tr >

    < b >

    < td colspan = "16" >

    < img src = "images/textbox.gif" width = "672" height = "10" alt ="" > < table > "

    < /tr >

    < b >

    < td rowspan = "2" >

    < img src = "images/textbox - 16.gif" width = "12" height = "526" alt = "" > < table >

    < td colspan = "14" > <!-InstanceBeginEditable name = "main_content_area"->

    < div id = "site_layout_content" > < img src = "images/b & w.jpg" width = "280" height = "389" align = "right" >

    < table width = "370" height = "486" border = "0" >

    < b >

    < td valign = "top" > < p > welcome! < br >

    < br >

    I offer a

    first class solution mobile disco and DJ for any occasion. Based in London and the surrounding counties. < br >

    Understand your crowd and keeping a lively dance floor is essential for an incredible part < br >

    < br >

    < br >

    < br >

    < /p > < table >

    < /tr >

    < b >

    < td valign = "top" > < br / > birthdays

    < Br > evenings

    Corporate events

    < br >

    < Br > weddings

    Bar / Bat Mitzvah < br >

    PROMS < table >

    < /tr >

    < b >

    < td > < table >

    < /tr >

    < /table >

    < / div >

    <!-InstanceEndEditable--> < table >

    < td rowspan = "2" >

    < img src = ' images/textbox - 18.gif' width = '8' height = '526' alt = "" > < table >

    < /tr >

    < b >

    < td colspan = "14" >

    < img src = "images/textbox - 19.gif" width = "652" height = "26" alt = "" > < table >

    < /tr >

    < b >

    < td rowspan = "2" >

    < img src = "images/sitelayout2_19.gif" width = "12" height = "50" alt ="" > < table > "

    " < td rowspan ="2"> < a href =" http://www.Facebook.com/dunkanb "> < img src = images/fb_btn.gif" "width ="50"height ="50"alt =" "> < /a > < table >

    < td rowspan = "2" >

    < img src = "images/sitelayout2_21.gif" width = "9" height = "50" alt ="" > < table > "

    " < td colspan ="3"rowspan ="2"> < a href =" http://www.Twitter.com/decknician "> < img src = images/twitter_btn.gif" "width ="51"height ="50"alt =" "> < /a > < table >

    < td rowspan = "2" >

    < img src = "images/sitelayout2_23.gif" width = "10" height = "50" alt ="" > < table > "

    " < td > < a href =" http://www.soundcloud.com/dunkanb "> < img src = images/soundcloud_btn.gif" "width ="48"height ="49"alt =" "> < /a > < table >

    < td colspan = "8" rowspan = "2" >

    < img src = "images/sitelayout2_25.gif" width = "492" height = "50" alt ="" > < table > "

    < /tr >

    < b >

    < td >

    < img src = "images/sitelayout2_26.gif" width = "48" height = "1" alt ="" > < table > "

    < /tr >

    < b >

    < td colspan = "16" >

    < img src = "images/copyright.gif" width = "672" height = "38" alt ="" > < table > "

    < /tr >

    < b >

    < td >

    < img src = "images/spacer.gif" width = "262" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "12" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "50" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "9" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "29" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "5" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "17" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "10" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "48" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "76" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "7" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "103" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "9" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "182" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "7" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "100" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "8" height = "1" alt ="" > < table > "

    < td >

    < img src = "images/spacer.gif" width = "266" height = "1" alt ="" > < table > "

    < /tr >

    < /table >

    < / div >

    <!--end Save for Web Slice components-->

    < / body >

    <! - InstanceEnd - > < / html >


    Can someone explain why this problem occurs? Thank you.

    @duncanb

    Before going any further, make sure you read this article-

    http://www.apptools.com/rants/spans.php

    You pack in a way in which the deck is, so to speak!  With a table structure that you, there really is no hope...

  • Looks good in FireFox, but not in Explorer

    I'm working on RDIpreview.com

    The site looks good so far in firefox, but I have problems with Internet Explorer.

    Can you help me the formatting of reslove questions?

    Most of the content is inserted via xml.

    The main problem is the content of the right column.

    It formats not in Explorer in the same way as in Firefox.

    Let me know what we can do.

    Thanks in advanced for the help.

    Thank you

    Travis

    Stylesheet not found

    http://Jigsaw.w3.org/CSS-validator/validator?profile=CSS21&warning=0&URI=http%3A%2f%2Frdip review.com%2F

    It looks like a float drop question.

    http://www.Adobe.com/cfusion/CommunityEngine/index.cfm?event=ShowDetails&PostID=1081&Produ ctId = 1

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    www.Alt-Web.com/
    www.Twitter.com/ALTWEB
    www.Alt-Web.blogspot.com

  • My fonts suddenly changed in Firefox, but not in other browsers. I solved all the duplicated fonts, cleared cache, and the settings in preferences are still on what they should be. What caused this and how can I solve this problem?

    Policies changed in the Firefox browser - not in any other browser.

    You can write a check for corrupted fonts and duplicate and other police issues:

    You can do a test of fonts to see if you can identify the corrupted fonts.

Maybe you are looking for