HTML - Weird Refresh Mess-up In Ie, Help Please!
Okay guys, here's the situation.
Basically, everything looks as it should within FireFox on my page, however IE brings me weird troubles. Upon loading the page at first in IE, it usually has some stranger extra space around the border, you'll see what I mean when I link it up. However, upon a refresh it looks as it should. What changes in a refresh on IE? So I temporarily just set the java popup window to be immediate, which auto-refreshes the page thus making look as it should. I don't know if this method fixes the look for everybody though. Here is the page with the java popup: http://perfectpathtowealth.com Here is it without: http://perfectpathtowealth.com/testindex123.html Anyone have any idea what I could do to fix the problem in IE? Thanks in advance! Similar TutorialsWould anyone have any idea why, sometimes when I refresh this page www.bopia.com or browse random pages within the site, the right div will show inside the left div? It happens in different browsers and different computers. In other words, the main content is showing inside the sidebar after the sidebar's content... Only happens sometimes, you may need to refresh a couple of times before you may see it happening. The pages are php, I figure the servers know how to serve php pages, have you ever seen this problem? Do you know if I need to specify any special Content-type? I triple checked the source and all divs are opening and closing correctly. Thank you! I have this page made with Dreamweaver. http://www.interfaceit.eu/eurometal/home.html in IE it works fine but with Netscape is a mess. Can anybody advise me what should i do? How can I eleminate the spaces that appears in Netscape Borwser? Thank You The page in question is - suspicious link removed; may be added to another post once the virus has been removed - I changed some images on the page several days ago and all seemed fine. Today the page has stopped loading. Any help would be a blessing for sure. Front Page is the problem and I am doing my best to get away from the program but it is hard to teach an old dog new tricks sometimes. Please be gentle I know it is a mess......Thank You! hi, recently ive been doing a layout and something came across that i couldn't fix. In internet explorer, the "Search Archive" box's height becomes bigger, but when viewed in firefox, it looks okay... does any1 know how to fix this? link: http://blogremix.cjb.net Hi All, I want to refresh the contents of IFrame without refreshing the whole page.....How is it possible... http://www.problem-solving.be/dir0/index.php Something really weird seems to happen in IE6 on my page. When hovering a menu, a grey rectangle appears in the top left corner, and when hovering it, the last 2 menus roll out. I have been trying things for hours no but I can't find the problem. Both website and CSS validate perfectly, so that's not the problem. Who can help me? I wanted to use pngs for my website because I like the transparency feature and it is a better format than gif. I applied the alpha hack so that it would work in ie 6. But I get weird results when a flash movie is playing. The png image shows up and they are cut out but an "x" image also shows up under it like you would see if an image doesn't load. It doesn't happen on any other pages, only the ones that have flash movies. Does anyone know why this might be happening? here is an example page: http://webtvdeluxe.com/v2/videos/Art Show/ Note: Only happens in IE 6 i need a code for a scroll box that when you put a code inside like <img src="www... and so on it will show the code and not the image or anything else i put it...i just want it to show the code thanks in advance -dorota Hello, Somehow I get a weird part on top of my website, it shouldn't be there really, this is my head -> |||||||||||||||||||||||||\ <head> <title>|| Welcome to the Myth Academy homepage ||</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> <!-- body { background-color: #75D2F3; } --> </style> <script type="text/javascript"> var dom = (document.getElementById) ? true : false; var ns5 = (!document.all && dom || window.opera) ? true: false; var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false; var ie4 = (document.all && !dom) ? true : false; var nodyn = (!ns5 && !ie4 && !ie5 && !dom) ? true : false; var origWidth, origHeight; // avoid error of passing event object in older browsers if (nodyn) { event = "nope" } /////////////////////// CUSTOMIZE HERE //////////////////// // settings for tooltip // Do you want tip to move when mouse moves over link? var tipFollowMouse= true; // Be sure to set tipWidth wide enough for widest image var tipWidth= 180; var offX= 30; // how far from mouse to show tip var offY= 12; var tipFontFamily= "Verdana, arial, helvetica, sans-serif"; var tipFontSize= "8pt"; // set default text color and background color for tooltip here // individual tooltips can have their own (set in messages arrays) // but don't have to var tipFontColor= "#000000"; var tipBgColor= "#DDECFF"; var tipBorderColor= "#000080"; var tipBorderWidth= 3; var tipBorderStyle= "ridge"; var tipPadding= 4; // tooltip content goes here (image, description, optional bgColor, optional textcolor) var messages = new Array(); // multi-dimensional arrays containing: // image and text for tooltip // optional: bgColor and color to be sent to tooltip messages[0] = new Array('images/icarus.jpg','Icarus',"#FFFFFF"); messages[1] = new Array('images/ares.jpg','Ares',"#FFFFFF"); messages[2] = new Array('images/caerus.jpg','Caerus',"#FFFFFF"); messages[3] = new Array('images/helios.jpg','Helios',"#FFFFFF"); messages[4] = new Array('images/nopic.jpg','Manticore',"#FFFFFF"); messages[5] = new Array('images/nopic.jpg','Typhon',"#FFFFFF"); messages[6] = new Array('images/nopic.jpg','Leviathan',"#FFFFFF"); messages[7] = new Array('images/nopic.jpg','Omega',"#FFFFFF"); messages[8] = new Array('images/abbadon.jpg','Abbadon',"#FFFFFF"); //////////////////// END OF CUSTOMIZATION AREA /////////////////// // preload images that are to appear in tooltip // from arrays above if (document.images) { var theImgs = new Array(); for (var i=0; i<messages.length; i++) { theImgs[i] = new Image(); theImgs[i].src = messages[i][0]; } } // to layout image and text, 2-row table, image centered in top cell // these go in var tip in doTooltip function // startStr goes before image, midStr goes between image and text var startStr = '<table width="' + tipWidth + '"><tr><td align="center" width="100%"><img src="'; var midStr = '" border="0"></td></tr><tr><td valign="top">'; var endStr = '</td></tr></table>'; //////////////////////////////////////////////////////////// // initTip - initialization for tooltip. // Global variables for tooltip. // Set styles // Set up mousemove capture if tipFollowMouse set true. //////////////////////////////////////////////////////////// var tooltip, tipcss; function initTip() { if (nodyn) return; tooltip = (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null; tipcss = tooltip.style; if (ie4||ie5||ns5) { // ns4 would lose all this on rewrites tipcss.width = tipWidth+"px"; tipcss.fontFamily = tipFontFamily; tipcss.fontSize = tipFontSize; tipcss.color = tipFontColor; tipcss.backgroundColor = tipBgColor; tipcss.borderColor = tipBorderColor; tipcss.borderWidth = tipBorderWidth+"px"; tipcss.padding = tipPadding+"px"; tipcss.borderStyle = tipBorderStyle; } if (tooltip&&tipFollowMouse) { document.onmousemove = trackMouse; } } window.onload = initTip; ///////////////////////////////////////////////// // doTooltip function // Assembles content for tooltip and writes // it to tipDiv ///////////////////////////////////////////////// var t1,t2; // for setTimeouts var tipOn = false; // check if over tooltip link function doTooltip(evt,num) { if (!tooltip) return; if (t1) clearTimeout(t1); if (t2) clearTimeout(t2); tipOn = true; // set colors if included in messages array if (messages[num][2]) var curBgColor = messages[num][2]; else curBgColor = tipBgColor; if (messages[num][3]) var curFontColor = messages[num][3]; else curFontColor = tipFontColor; if (ie4||ie5||ns5) { var tip = startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr; tipcss.backgroundColor = curBgColor; tooltip.innerHTML = tip; } if (!tipFollowMouse) positionTip(evt); else t1=setTimeout("tipcss.visibility='visible'",100); } var mouseX, mouseY; function trackMouse(evt) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; if (tipOn) positionTip(evt); } ///////////////////////////////////////////////////////////// // positionTip function // If tipFollowMouse set false, so trackMouse function // not being used, get position of mouseover event. // Calculations use mouseover event position, // offset amounts and tooltip width to position // tooltip within window. ///////////////////////////////////////////////////////////// function positionTip(evt) { if (!tipFollowMouse) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; } // tooltip width and height var tpWd = (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth; var tpHt = (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight; // document area in view (subtract scrollbar width for ns) var winWd = (ns5)? window.innerWidth-20+window.pageXOffset: standardbody.clientWidth+standardbody.scrollLeft; var winHt = (ns5)? window.innerHeight-20+window.pageYOffset: standardbody.clientHeight+standardbody.scrollTop; // check mouse position against tip and window dimensions // and position the tooltip if ((mouseX+offX+tpWd)>winWd) tipcss.left = mouseX-(tpWd+offX)+"px"; else tipcss.left = mouseX+offX+"px"; if ((mouseY+offY+tpHt)>winHt) tipcss.top = winHt-(tpHt+offY)+"px"; else tipcss.top = mouseY+offY+"px"; if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100); } function hideTip() { if (!tooltip) return; t2=setTimeout("tipcss.visibility='hidden'",100); tipOn = false; } document.write('<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>') </script> </head> |||||||||||||||||||||||||\ this is how my page looks like: http://img207.imageshack.us/img207/4111/bahwn8.jpg It's probably something in the script but I can't find the error part, I don't know if this is because of the javascript part or a mistake in the html tags. Please help me out Problem resolved, I added a margin-bottom to the CSS in col2 and it fixed the issue. thank you to any readers. I've been trying to get this to not happen all night long and I have no idea why it is happening. the page works great in firefox, but for some reason, in IE when the page loads normal, but as soon as you hover over a menu item, the bottom parts of the page get scrambled. link here here is the html/css of it: Code: <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>St. Augustine Parish</title> <style type="text/css"> <!-- * { margin: 0; padding: 0; } h4 {color: #780E22} div, p, th, td, li { font-family: Arial, Sans, sans-serif; font-size: 12px; color: #858585; } p, li { margin-bottom: 15px; } #page { background: #FFF url("images/header.gif") no-repeat; padding-top: 57px; width: 800px; } #content { background: #FFF url("images/fade.gif") top left repeat-x; padding: 25px 15px; } #menu { background: #780E22 url("images/img.gif") top right no-repeat; } #menu ul { border: none; list-style: none; width: 195px; } #menu li { border-bottom: 1px solid #924A58; margin-bottom: 0; } #menu li a { background-color: #AD5868; color: #fff; display: block; font-size: 14px; font-weight: bold; padding-left: 15px; text-decoration: none; } #menu li a:hover { background-color: #D18795; } #col1 {width: 259px; float: left; border-right: 1px solid black; margin-left: 6px; } #col2 {width: 259px; float: left; border-right: 1px solid black; margin-left: 6px; } #col3 {width: 259px; float: left; margin-left: 6px; position: absolute; left: 542px; } #notice {width: 518px; border: 1px solid black; float: right; position: absolute; left: -259px; padding: 5px; margin-bottom: 10px; } #footercontain {width: 800px;} #footer {width: 100%; clear: both; font-family: Arial, Sans, sans-serif; font-size: 12px; text-align: center; } --> </style> </head> <body> <div id="page"> <div id="menu"> <ul> <li><a href="#">Community Links</a></li> <li><a href="#">Driving Directions</a></li> <li><a href="#">Faith Formation</a></li> <li><a href="#">Homilies</a></li> <li><a href="#">Music Ministry</a></li> <li><a href="#">News And Events</a></li> <li><a href="#">Parish Photos</a></li> <li><a href="#">Parish Ministries</a></li> <li><a href="#">Who’s Who</a></li> </ul> </div> <div id="content"> </div> <div id="col1"> <table width="260px"> <tr><td><p>Mass Schedule </p></td></tr><tr><td><p>Monday - Thursday 10:00AM<br />Saturday 5:15 PM (DST) - Saturday 4:00 PM (EST)<br />Sunday 8:30AM 11:00AM</p></td></tr><tr><td><p>Baptism Parents Class 3rd Wednesday of each month at 7:00PM (call Pastoral Office to register)</p></td></tr><tr><td><p>Nursery service, Childrens Litury of the Word and SEEDS Program for 3 and 4 year olds call 315.635.0881.</p></td></tr><tr><td><p><img src="images/arrow.gif"> Read this Week’s Bulletin (pdf)</p></td></tr><tr><td><p><img src="images/arrow.gif"> Download Liturgical Schedules</p></td></tr><tr><td><p><img src="images/arrow.gif"> Readings for Wednesday of the Fourth Week of Easter (usccb.org)</p></td></tr> </table> </div> <div id="col2"> <table width="260px"> <tr><td><p>Mass Schedule</p></td></tr><tr><td><p>Monday - Thursday 10:00AM<br />Saturday 5:15 PM (DST) - Saturday 4:00 PM (EST)<br />Sunday 8:30AM 11:00AM</p></td></tr><tr><td><p>Baptism Parents Class 3rd Wednesday of each month at 7:00PM (call Pastoral Office to register)</p></td></tr><tr><td><p>Nursery service, Childrens Litury of the Word and SEEDS Program for 3 and 4 year olds call 315.635.0881.</p></td></tr> </table> </div> <div id="col3"> <table width="260px"> <tr><td><p>Mass Schedule<p></td></tr><tr><td><p>Monday - Thursday 10:00AM<br />Saturday 5:15 PM (DST) - Saturday 4:00 PM (EST)<br />Sunday 8:30AM 11:00AM</p></td></tr><tr><td><p>Baptism Parents Class 3rd Wednesday of each month at 7:00PM (call Pastoral Office to register)</p></td></tr><tr><td><p>Nursery service, Childrens Litury of the Word and SEEDS Program for 3 and 4 year olds call 315.635.0881.</p></td></tr> </table> <br /> <div id="notice"> <h4>Notice</h4> <br /> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </div> </div> </div> <div id="footercontain"> <div id="footer"> © 2004-2007 St. Augustine's Parish, All Rights Reserved<br /> Web Site Design By <a href="http://www.saltcitytech.com">Salt City Tech</a> </div> </div> </body> </html> <!-- <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Vivamus aliquam felis et neque. Sed ut mauris. Mauris fringilla gravida leo. Sed a turpis et magna mollis laoreet. Nullam felis dolor, sodales quis, semper blandit, aliquet nec, enim. Etiam in ligula eget nibh facilisis convallis. Pellentesque elit. Etiam sapien. Etiam mollis lorem a nibh. Etiam varius tortor. Integer ultricies.</p> <p>Nam placerat ipsum at nisi. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Nunc augue. Cras condimentum leo eget massa. In hac habitasse platea dictumst. Suspendisse sollicitudin magna ut turpis. Praesent id nisi sit amet orci fringilla dictum. Fusce pretium dui sed leo. Maecenas aliquam tellus vel leo. Nulla ac sapien. Nullam ac tortor. Proin mauris. Suspendisse et magna ullamcorper ante rutrum congue. Nunc malesuada vulputate justo. Aenean suscipit pulvinar velit. Fusce et ligula. Nulla at enim eget metus ullamcorper tempor.</p> <p>Aliquam risus orci, ultrices non, lobortis eget, cursus ultricies, lorem. Fusce nec eros. Sed faucibus, tellus nec tempor tincidunt, ante dui feugiat leo, et euismod lectus lectus in libero. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Maecenas ultrices lectus eget lorem. Nunc vel justo nec mi condimentum porttitor. Integer eget lorem in dolor bibendum vulputate. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Pellentesque facilisis. Aenean auctor. Ut at ligula. Nunc posuere.</p> <p>Suspendisse potenti. Nam ac nibh. Aenean quam. Sed ut nisi id arcu nonummy consequat. Ut sapien arcu, gravida vel, accumsan vel, facilisis ut, magna. Vestibulum eget nisi ac neque feugiat ultricies. Vestibulum ut neque. Mauris nonummy. Vivamus est elit, semper ut, egestas at, consectetuer eu, sem. Praesent nec libero a nulla feugiat lacinia. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nunc tortor felis, pellentesque sit amet, accumsan vitae, tincidunt et, justo. Nunc leo. Integer nonummy lobortis nunc.</p> <p>Fusce libero lacus, porttitor eu, suscipit at, ultrices a, lacus. Aenean a neque nec sem pulvinar mollis. Integer vel nisi. Nullam ultrices tellus quis justo. Donec fringilla ullamcorper arcu. Mauris ut orci quis tellus aliquam ultrices. Nulla dui sapien, scelerisque a, gravida in, tristique a, erat. Integer tristique. Maecenas varius bibendum tortor. Donec vitae felis non felis placerat pellentesque. Mauris dignissim, massa nec vestibulum mollis, ante libero semper mi, in dignissim lectus sem vel pede.</p> --> I appreciate any help that you might have to offer. thank you. Here is my CSS: Code: #awardcontainer { width: 700px; margin-top: 20px; margin: auto; padding: 0; } #blueheader { background: url('http://www.forumbuff.com/fpacolor1top.png') no-repeat; width: 700px; height: 50px; margin: 0; padding: 5px; } #bluecontent { background: yellow; max-width: 700px; margin: 0; padding: 2; } #bluefooter { background: url('http://www.forumbuff.com/fpacolor1bottom.png') no-repeat; width: 700px; height: 50px; margin: 0; padding: 5px; float: left; } Here is my HTML: HTML Code: <html> <head> <title>Test</title> <link href="stylesheet.css" rel="stylesheet" type="text/css"> </head> <body> <div id="awardcontainer"> <div id="blueheader"> </div> <div id="bluecontent"> Testing 1 2 3 </div> <div id="bluefooter"> </div> </div> </body> </html> The error can be found at: http://zenrer.com/fptest/awards.html I have never seen this problem before, the gap between the header and the content. Can someone help me please. Can someone please check my site in IE6? I think the text in the navigation menu on the left doesn't shows up besides "Pictures"... I saw this problem on my client's computer (yikes! ). It was really weird, the boxes were just green with no writing until you hovered over them. I don't have access to 6 myself and I'd really really appreciate it if someone could check this: http://www.salemnhconservation.org Let me know if this problem happens with you! Thanks!!! Well i know bare minimum of html and yes i am gunna get help. But while i was practing on www.jtownco.com know the picture links arent showing up just the alt= are heres the code for it ...it was working before
Quote: <Html> <IMG SRC="jayytown.jpg" alt="Banner"><br> <center><A HREF="http://www.jtownco.com"><IMG SRC="Home.png" Border=0 ALT="Pitt"></A>     <A HREF="http://www.jtownco.com/videos.html"><IMG SRC="Videos.png" Border=0 ALT="Pitt"></A>     <A HREF="http://www.jtownco.com/photos.html"><IMG SRC="photos.png" Border=0 ALT="Pitt"></A>     <A HREF="http://www.jtownco.com/bios.html"><IMG SRC="bios.png" Border=0 ALT="Pitt"></A>     <A HREF="http://www.jtownco.com/merch.html"><IMG SRC="merch.png" Border=0 ALT="Pitt"></A> <body bgcolor="black"> <br><br><br> <TABLE BORDER="2" CELLPADDING="1" CELLSPACING="1" WIDTH="50%" HEight="50%"> <TR> <TD> <br><font color="white"><br> <IMG SRC="fp1.jpg"height="200" width="200"Align="left" BORDER="0" ALT="flex"> <align="right"><center><br>A quick pick from a new area on the border of Jackson and New Egypt there's video and photo's check them out.<br><br><br><A HREF="http://www.jtownco.com/pitt/html/0.htm"><IMG SRC="photos.png" Border=0 ALT="Pitt"></a> <A HREF="http://www.jtownco.com/videos.html"><IMG SRC="videos.png" Border=0 ALT="Pitt"> </center></align> </TD> <TD><IMG SRC="carwash1.jpg"height="200" width="200"Align="center" BORDER="0" ALT="carwash"> <center><font color="white">Can you guess how this picture ends?<center><br><A HREF="http://www.jtownco.com/videos.html"><IMG SRC="videos.png" Border=0 ALT="Pitt"></TD> </TR> <tr> <td>column 3</td> <td>column4</td> </tr> </TABLE> Hi I've got a weird problem. Basically, I've created an effect where an image (designed to look like the front of a record sleeve) flips when clicked, and then shows a different image (which looks like the reverse of the same sleeve). There are nine "albums" on the page, however, the effect only works on one image at any one time (by default "album1", but delete this album and the effect will work exclusively on "album2" and so on). Changing "div id" to "div class" throughout the HTML document, style sheet etc. doesn't help, it only rearranges the images. I've pasted the relevant code below. I can't understand the problem, and it's creating a serious roadblock. Any ideas? Thanks - Chris HTML: <!-- Album pictures (front sleeve on left, zig-zag sleeve reverse on right) --> <div id="album1"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album1.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Reverse.png" </div> <div id="album2"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album2.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Reverse.png" </div> <div id="album3"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album3.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Reverse.png" </div> <div id="album5"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album5.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Album2.png" </div> <div id="album6"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album6.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Album2.png" </div> <div id="album7"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album7.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Album2.png" </div> <div id="album9"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album9.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Album2.png" </div> <div id="album10"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album10.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Album2.png" </div> <div id="album11"> <a class="opacity"/> <img id="flip1" img src="Top_16/Album11.png" /> <!-- Flip --> <img id="flip2" img src="Top_16/Album2.png" </div> CSS: /* Image flip code (applies to album divs, decreases then increases width and opacity, hiding one image then the other, producing a "flipping" optical illusion) */ #flip1{ position:absolute; cursor:pointer; width:104px; height:104px; } #flip2{ display:none; position:absolute; cursor:pointer; } After fixing the code for my image maps after my question yesterday, I got an email from a user saying this: "I just noticed one thing when viewing the site using IE. on the pages, IE is shrinking the image and rather than giving me the option to click on a link, it gives me a magnifying glass to enlarge the image. When i enlarge the image, I still can't click on the links. Instead I get the magnifying glass to shrink the image back down." Here is an example of the code: <img src="About.jpg" width="1100" height="825" border="0" usemap="#about" /> <map name="about" /> <area shape="rect" coords="285,29,316,50" href="http://www.com" title="HOME" alt="Home" /> <area shape="rect" coords="383,29,460,50" href="http://www.com/teachers" title="FOR TEACHERS" alt="For Teachers" /> <area shape="rect" coords="469,29,516,50" href="http://www.com/support" title="SUPPORT" alt="Support" /> </map> It works fine with Safari and Firefox. What could be causing that problem with IE? Hi, My Problem is with ie6 only I have a Menu with Mouse over that changes the background color. I have 6 different menu Home-About-partnership-findadealer-becomedealer-faq-calculator but here's the poroblem: calculator appears twice in the page and in the source code it is there only once. The proof when you try to highlight the word 'calculator ' , both are highlighted. And , Another weird thing if you go on the calculator Page: Everything is ok Any help would be appreciated Thanks Reference: http://test6.waltonstreetwebdesign.com/ So right there on the home page, "A Warm Welcome" is in an h1 tag, most of the regular text is inside <p> tags except for the test text. Why in the world is the right align of the <p> tags a little to the left of the text not inside the <p> tag and the <h1> tag? website- http://webtvdeluxe.com/home.php It's not really a problem but an annoyance. I just set up my page so it is html 4.0.1 strict. I don't have any errors or anything. Everything is viewed perfectly on a windows computer(no matter what the browser as far as I can tell). However on a mac I get this problem.... If you have a mac, use safari or firefox to view the page. At first glance, you will say "Well what's the problem?" The bottom of the middle table below fashion expert should be the bottom of the page. However the page continues further down alittle bit. If I didn't have those tables in the middle filling that empty space, the page would still be that long. For example, on one of my pages, I only have one table in the middle but my page still scrolls down right to that spot. Even if there is no content to push the table down that far which is the weird part. Has anyone ever encountered this? Is this possibly a bug with mac browsers? Is there maybe a fix? Well hello folks. Nice place you have here. This looks like just the place to ask a question I have, I hope you'll indulge me. I'm working through my blog site and trying to get it up to xhtml snuff...but that's another issue. What I'd like to start with is a little quirky problem that only seems to effect IE6. When users try to highlight text, odd things happen. Here's one person's attempt to explain it: Quote: This is the pattern: Highlight works on the page displayed on the screen (either main page or each entry). The spot I pointed to before is where the screen display ends on my initial main page load. Once I click on each entry, highlight works on the text displayed on that initial screen - it stops working (starts highlight blocks) once I scroll down beyond that initial screen display. It seems to repeat this pattern with quotes, comments, or just entry text - just beyond that initial screen. Hope it helps. I believe this highlighting issue has to do with my use of css positioning. Let me show you just the key parts of the html page, and then the corresponding bits of the stylesheet. Let's say we have a page consisting of the following div's: Code: <div id="overall"> <div id="titlecell"> <div id="navbar"> <div id="maincell"> <div id="titlebarright"> <div id="leftmargin2"> <div id="rightmargin2"> Here are the related bits of CSS: Code: div#overall { position:relative; width: 1000px; margin: auto; } div#titlecell { text-align: right; vertical-align: top; height: 150px; font-size:x-small; position: absolute; top: 0px; left: 0px; width: 1000px; } div#navbar { font-size:x-small; position: absolute; top: 15px; left: 650px; } div#maincell { color: #252525; text-align: left; vertical-align: top; padding-top: 30px; width: 580px; position: absolute; top: 160px; left: 0px; } div#titlebarright { width: 382px; height: 185px; background: url(http://www.solomonia.com/images/titlebarrightbox.gif) no-repeat; position:absolute; top:95px; left:600px; } div#leftmargin2 { height: 10000px; color: #252525; vertical-align: top; text-align: center; width: 160px; padding: 0; position: absolute; top: 285px; left: 600px; } div#rightmargin2 { height: 10000px; color: #252525; width: 220px; text-align: center; vertical-align: top; padding: 0; position: absolute; top: 285px; left: 763px; } So note, we have a div called "overall" whose position is set to "relative" which functions as a container for all the other divs with position set to "absolute." I'm figuring there's something about this that gives IE fits when highlighting. What do you think? Edit: My apologies. This probably should have been put in the css forum. I have xhtml on the brain I guess. Please feel free to move. Wzup Got a little issue on my site. is showing everything great in firefox. IE is a little off but i'm still working on that. but in safari i doesn't show anything. This is the site try it out. click on the Events button in the nav bar. in FFX my stuff shows up safari it doesn't i used div tags to show it and css sheets site created in dreamweaver. checked with w3 validator thanks for any help greetz robin |