Margin difference (height) in Firefox and IE 9

Hi all,
I know this problem is really ancient but just can't find a fix.
Please look here:  http://www.tridentsolutions.co.nz/howick-opt/
When the margin is set for Firefox Safari and Chrome, the banner images are too close to the horizontal menu but looks perfect in IE9
Can't fix it, some expert advise please.

That's why we have IE conditional comments.
<!--[if IE]>-->
<style type="text/css">
/**put conditional styles for IE here**/
</style>
<!--<![endif]-->
Add it just above your document's </head> tag.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com/

Similar Messages

  • Margin differences IE6 vs Firefox 2

    If you create a page using the code below you will see that
    the left margin is completely different in IE 6 and Firefox.
    Do I have a coding error or do I need to set the margin and
    then if IE is used set it again with a different value?
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    #sub-section {
    width: 195px;
    padding: 3px 2px 0 0;
    background-color:#CCCCCC;
    display: block;
    #sub-section ul {
    width: 165px;
    margin-left: 10px;
    #sub-section ul li {
    font-size: 12px;
    padding-bottom: 5px;
    list-style: none;
    #sub-section ul li ul li {
    list-style-image:url(/common/images/pointer.gif);
    list-style-position: inside;
    margin-left: 0px;
    #sub-section a, #sub-section a:link {
    color: #000066;
    text-decoration: none;
    font-weight: bold;
    #sub-section a.active, #sub-section a:hover {
    color: #6666CC;
    text-decoration: underline;
    background-image: url(/common/images/pointer.gif) no-repeat
    left center;
    -->
    </style>
    </head>
    <body>
    <div id="sub-section">
    <ul>
    <li><a href="#">Link 1</a></li>
    <li><a href="#">Link 2
    </a>
    <ul>
    <li><a href="#">Sub Link1</a></li>
    <li><a href="#">Sub Link 2</a></li>
    <li><a href="#">Sub Link 3
    </a>
    <ul>
    <li><a href="#">Sub Sub Link 1
    </a></li>
    </ul>
    </li>
    </ul>
    </li>
    <li><a href="#">Link 3</a></li>
    <li><a href="#">Link 4</a></li>
    <li><a href="#">Link 5</a></li>
    <li><a href="#">Link 6 </a></li>
    </ul>
    </div>
    </body>
    </html>

    DC_Eric escreveu:
    > If you create a page using the code below you will see
    that the left margin is
    > completely different in IE 6 and Firefox.
    > Do I have a coding error or do I need to set the margin
    and then if IE is used
    > set it again with a different value?
    >
    > <!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">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    > <title>Untitled Document</title>
    > <style type="text/css">
    > <!--
    > #sub-section {
    > width: 195px;
    > padding: 3px 2px 0 0;
    > background-color:#CCCCCC;
    > display: block;
    > }
    >
    > #sub-section ul {
    > width: 165px;
    > margin-left: 10px;
    > }
    >
    > #sub-section ul li {
    > font-size: 12px;
    > padding-bottom: 5px;
    > list-style: none;
    > }
    >
    > #sub-section ul li ul li {
    > list-style-image:url(/common/images/pointer.gif);
    > list-style-position: inside;
    > margin-left: 0px;
    > }
    >
    > #sub-section a, #sub-section a:link {
    > color: #000066;
    > text-decoration: none;
    > font-weight: bold;
    > }
    >
    > #sub-section a.active, #sub-section a:hover {
    > color: #6666CC;
    > text-decoration: underline;
    > background-image: url(/common/images/pointer.gif)
    no-repeat left center;
    > }
    > -->
    > </style>
    > </head>
    >
    > <body>
    > <div id="sub-section">
    >
    >
    <a href="#">Link 1</a></li>
    >
    <a href="#">Link 2
    > </a>
    >
    >
    <a href="#">Sub Link1</a></li>
    >
    <a href="#">Sub Link 2</a></li>
    >
    <a href="#">Sub Link 3
    > </a>
    >
    >
    <a href="#">Sub Sub Link 1 </a></li>
    >
    > </li>
    >
    > </li>
    >
    <a href="#">Link 3</a></li>
    >
    <a href="#">Link 4</a></li>
    >
    <a href="#">Link 5</a></li>
    >
    <a href="#">Link 6 </a></li>
    >
    > </div>
    > </body>
    > </html>
    >
    http://www.webcredible.co.uk/user-friendly-resources/css/
    zerof
    http://www.educar.pro.br/
    Apache - PHP - MySQL - Boolean Logics - Project Management
    Você deve, sempre, consultar uma segunda opinião!
    Deixe todos saberem se esta informação foi-lhe
    útil.
    You must hear, always, one second opinion! In all cases.
    Let the people know if this info was useful for you!

  • NPAPI difference between Firefox and chrome

    Hi,
    I'm writing some plugin; I got Gesko SDK from mozilla site; After build it successfully loaded and working on Firefox;
    I tried to load and execute it with chrome; I found that chrome cannot load plugin; After some debugging I found that plroblem in function table structures - size of structures is not the same in firefox and chrome;
    Additional search bring me to a difference - it is in alignment; Firefox and Gesko using 32 bit alignment/packaging, and chrome use 8 bit alignment/packaging;
    So, my questions are:
    -is it bug of chrome or firefox?
    -when will it be fixed?
    -I did not work with chrome previously; from when is this build difference?

    This forum is geared toward Firefox end user support, not toward developers, so you may not get an answer from anyone who knows exactly what you are talking about. Not to sound rude, but if your plugin is working in Firefox, but not in Chrome wouldn't it make sense to ask a Google support forum about your Firefox plugin not working in Chrome?
    As far as 8-bit vs. 32-bit, AFAIK 8-bit operating systems and programs date back like 20 years, so I doubt if Google is using 8-bit in its' plugins. But that would best be addressed by someone familiar with Chrome development and plugins.

  • Have started seeing diamonds with question marks on FireFox (and Chrome); changed encoding, made no difference.

    Both FireFox and Google Chrome (but not Internet Explorer) have been showing black diamonds with question marks in them for some time. It's not an encoding issue, as changing character encoding doesn't work. I don't know what caused it, as it all of a sudden started out of the blue. My network.http. in about:config are all default. I've tried scanning for malware, including in safe mode with the internet disconnected. Nothing has made a difference. Please help me, as this problem is incredibly hard to Google and I have no idea what to do.

    ''I saw it again through Firefox - from the same website, but not the same page as before.''
    he Council of Islamic Organizations of Greater Chicago supports the idea.
    �I think it will open up doors,� said Janaan Hashim, a spokeswoman for the group representing more than 400,000 Muslim Americans in the Chicago area. �Language is a man-made limitation. I think what God cares about is how we fulfill our purpose in life.�
    The nation�s largest Catholic civil rights group says Catholics won't get behind the proposal.
    �Bishop Martinus �Tiny� Muskens can pray to �Allah� all he wants, but only addlepated Catholics will follow his lead,� Bill Donohue, president of the Catholic League for Religious and Civil Rights, said in a statement. �It is not a good sign when members of the Catholic hierarchy indulge in a fawning exchange with Muslims, or those of any other religion.�
    Thiis is the link:
    http://z10.invisionfree.com/Ignis_Ardens/index.php?showtopic=12912

  • What is the difference between Firefox and Internet Explorer?

    I'm an older woman and it's hard for me to keep up with all the new technology these days. Can someone please explain the difference between Firefox and Internet Explorer? Which one is better to use? Many thanks for your help.

    Firefox, Chrome and Internet explorer are all types of Browser; for use (mainly) on the internet, other modern browsers are Safari & Opera.
    Just to confuse things slightly, Windows Explorer, is the name of the software that is usually used to look at content (files & folders) on Windows PCs.
    Maybe these articles will help
    * http://www.wisegeek.com/what-is-a-web-browser.htm <-- blue link is clickable --
    * http://en.wikipedia.org/wiki/Web_browser

  • What's the difference between keep cookies until I close firefox and clear cookie history when firefox closes?

    In the settings for Firefox 33.0 (I am using Ubuntu 14.04 but the functionality is the same for Windows 7) there are two different ways to delete cookies when firefox closes. Or at least there seems to be.
    First is the keep cookies until firefox closes
    Second is to check the box to clear history when firefox closes and in the settings check cookies.
    What is the difference between these two options?
    I usually have both setup but I was noticing that a login was not saving for td canada trust easyweb, even though I have an exception set for it. Now I unchecked to delete cookies when clearing the history on close and the login saves correctly.
    This login saves 7 cookes under easyweb.td.com and 10 cookies under td.com and I have exceptions set for both. If I clear history on close and include cookies, half of the td.com cookies are gone when I close firefox and re-open. The same is true if I don't set the exception.
    So currently I cannot figure out a way to keep all the cookies if I clear cookie history when firefox closes. What is the difference when this is enabled?

    Let all cookies expire when Firefox is closed to make them session cookies.
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: Keep until: "I close Firefox"
    Create a cookie 'allow' exception for cookies that you would like to keep.
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: Exceptions
    Clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, passwords, and other website specific data.
    Clearing cookies will remove all specified (selected) cookies including cookies with an allow exception that you would like to keep.
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
    *https://support.mozilla.org/kb/remove-recent-browsing-search-and-download-history

  • Difference between Firefox and Safari when viewing iWeb created content.

    Greeting Mac fans,
    I've noticed that my iWeb pages load 2-3 times faster when viewed in Firefox than Safari. I find this a little suprising.
    Also, my hit counter shows when the page is displayed in Firefox, but not in Safari.
    Any ideas?
    All content was created using iWeb and is hosted at my dotmac account. I have a domain name and I'm also using "masked URL fowarding"
    Peace
    super_tee
    Emac 1.25ghz   Mac OS X (10.4.8)   Packed to the eyeballs with goodies....

    There are two things that I think are at play
    here...
    First, the difference in loading times between
    FireFox and Safari.... I haven't noticed that huge of
    a difference myself, but what I have noticed is that
    FireFox is much faster at pulling up cached
    material....or maybe figuring out whether to pull
    from cache vs. anew. I've noticed that FireFox also
    hangs on to cached material more tenaciously than
    Safari, meaning that sometimes I have to go in and
    empty FireFox's cache in order to see something
    update...I have to do this much more often in FireFox
    than Safari.
    Second, about your counters. If you turn your
    masking off from your domain forwarding, you .Mac
    counters will be visible to all. Using masking will
    make them invisible to certain browsers under certain
    conditions.
    James, I guess I should download and use Firefox, but remember feeling burned the last time I did. I downloaded it, and soon after, things went awry with my computer. I am hoping that the were unrelated events, since Leo Laporte, the KFI techie guru, also recommends using Firefox for various reasons. He says that it is very safe because, basically, it is "dumb" (his words). But he meant that it's lack of bells and whistles made it go very fast, and made it avoid all the problems of Internet Explorer.
    Lorna in Southern California

  • What is the difference between Firefox and Firefox os please. I have a Samsung galaxy s3 mini what one would you recommend would be better for my phone

    What is the difference between Firefox and Firefox os, and what one is better for the Samsung galaxy s3 mini, Please could you recommend which one is the best and most suitable for my phone please. Many thanks Michelle Petch

    Thank you for your question.
    Firefox is basically a browser.And Firefox OS is an Operating System.You can install Firefox in your SGS3 just like an android application.But if you want Firefox operating system on it. then you have to flash the ported Firefox OS on your device. Then it will be a completely different standalone operating system.you cannot install android applications on it.
    To read more technical difference read:
    Firefox OS:
    http://en.wikipedia.org/wiki/Firefox_OS
    Firefox Browser:
    http://en.wikipedia.org/wiki/Firefox
    Hope this clears your query.Thank you

  • Does anybody know why type might render strangely when viewing a PDF in Chrome, Firefox and IE?

    Does anybody know why type might render strangely when viewing a PDF in Chrome, Firefox and IE?
    I have a client who I create a report for every year. This year there seems to be a problem with the PDFs that I have exported when they are viewed in various web browsers. To elaborate, the type is rendering inconsistently – in Chrome the weight of the type is inconsistent (ranging from light to something more heavy) and in IE the type appears more condensed, and the x-height is variable.
    To my knowledge Chrome, Firefox and IE are all affected in one way or another. The problem does not occur in Safari.
    We always use Helvetica Neue and have never had problems like this before. I am using the same version of Helvetica Neue as I always use, but even when I change the font to Helvetica the problem still persists.
    On a deadline so would appreciate some support here. Box of beer to the person who can provide me with a working solution!
    Thanks kindly
    Simon Winter

    Hello Ellis. Thanks for your efforts in helping narrow down this issue, and for offering workarounds for Simon. Here are the steps I sent to Simon, enhanced by the info you provided above:
    1. I typed some text in Id CC 2014.0 (Mac OS 10.9.4) using the system font Helvetica Neue Light at 12 pt. All defaults were on, including ligatures.
    1.a. I used the text in Simon's example, “An Annual Report marks the end of a year’s work, but it is also an opportunity to reflect on the principles that” and reduced the text frame width so that it wrapped across 4 lines.
    1.b. I also tried creating an all-page text frame and filling it with placeholder text (same font, same point size).
    2. Export > Interactive PDF (or Static PDF: doesn’t make a difference), using all the default PDF export settings.
    3. View resulting PDF in the latest Chrome (36.0.1985.143) on that same Mac, or on Windows, at various zoom levels, on a retina display as well as on a lower-dpi monitor. It looks fine to me: all words and lines have the same even "color" or weight.
    In all cases, the fonts embedded in the PDF were listed as:
    HelveticaNeue-Light (Embedded Subset)
    Type: TrueType
    Encoding: Ansi
    HelveticaNeue-Light (Embedded Subset)
    Type: TrueType (CID)
    Encoding: Identity-H
    If you follow the above steps, can you repro the problem?

  • Firefox and Mapviewer

    Hi all,
    I am using MapViewer Ver11_1_1_B090416. In our webapp we perfrom serveral queries using binding variables in predefined MVThemeBasedFOI like this:
    var objThemebasedfoi = new MVThemeBasedFOI("dynquery", strTheme);
    objThemeBasedFOI.setQueryParameters(x1,x2);
    objMapview.addThemeBasedFOI(objThemeBasedFOI);
    My observation is that firefox does not render all FOI that correspond to the binding variables. In some cases it seems only to render those features with a minimum dimension. Features with an area less than that minimum are skipped.
    This is the Mapviewer Log for Firefox:
    FEINER: getMapper() succeeded.
    15.09.2009 10:24:20 oracle.sdovis.LoadThemeData2 run
    FEINER: LoadThemeData2 running thread: Thread-40
    15.09.2009 10:24:20 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    AM FEINSTEN: [ AR_GP_GEBAEUDE_BY_NUTZUNG ]: -Infinity,-Infinity,NaN,NaN
    15.09.2009 10:24:20 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    AM FEINSTEN: Theme query [ AR_GP_GEBAEUDE_BY_NUTZUNG ]: SELECT ID, GEOM, 'C.SPATIAL_QUERY', GEB_NR, 'T.GEBAEUDENR', 1, 'rule#0', BAUF_NR, FLAECHE, NUTZUNG, ID FROM GP_GEBAEUDE WHERE 's'='s' AND (NUTZUNG in (select column_value from table(:1)))
    15.09.2009 10:24:20 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    FEINER: [ AR_GP_GEBAEUDE_BY_NUTZUNG ] Fetch size: 100
    15.09.2009 10:24:20 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    INFO: [ AR_GP_GEBAEUDE_BY_NUTZUNG ] sql exec time: 16ms, total time loading 45 features: 31ms.
    15.09.2009 10:24:20 oracle.lbs.mapserver.core.MapperPool freeMapper
    FEINER: freeMapper() begins...
    and for MSIE
    FEINER: getMapper() succeeded.
    15.09.2009 10:26:21 oracle.sdovis.LoadThemeData2 run
    FEINER: LoadThemeData2 running thread: Thread-41
    15.09.2009 10:26:21 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    AM FEINSTEN: [ AR_GP_GEBAEUDE_BY_NUTZUNG ]: -Infinity,-Infinity,NaN,NaN
    15.09.2009 10:26:21 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    AM FEINSTEN: Theme query [ AR_GP_GEBAEUDE_BY_NUTZUNG ]: SELECT ID, GEOM, 'C.SPATIAL_QUERY', GEB_NR, 'T.GEBAEUDENR', 1, 'rule#0', BAUF_NR, FLAECHE, NUTZUNG, ID FROM GP_GEBAEUDE WHERE 's'='s' AND (NUTZUNG in (select column_value from table(:1)))
    15.09.2009 10:26:21 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    FEINER: [ AR_GP_GEBAEUDE_BY_NUTZUNG ] Fetch size: 100
    15.09.2009 10:26:21 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    INFO: [ AR_GP_GEBAEUDE_BY_NUTZUNG ] sql exec time: 16ms, total time loading 45 features: 31ms.
    15.09.2009 10:26:21 oracle.lbs.mapserver.core.MapperPool freeMapper
    FEINER: freeMapper() begins...
    As you can see in both cases 45 features are found but only IE renders all those features. Even when i call
    var arFOI = objTemaL.getFOIData();
    arFOI.length is 45 for IE but only 9 for firefox.
    Is there any solution/workaround for this?
    Regards!
    Dominik

    Hi!
    Sorry for the late response... I was out of office...
    Yes, there is a difference - see below
    Firefox
    Dec 1, 2009 11:00:48 AM oracle.lbs.foi.FOIServlet doPost
    FINEST: ---- begin FOI response ----
    {"foiarray":[{id:"601657",name:"196",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601657_9_10.png",x:2575464.23754974,y:5727936.67627708,width:9,height:10,area:"1141,1036,1142,1039,1142,1036,1141,1036",attrs:["Chemiepark","50.22","TK-Verteilerstationen","601657"]},{id:"601942",name:"9051",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601942_10_9.png",x:2575615.79627413,y:5728946.78592017,width:10,height:9,area:"1176,805,1179,806,1176,805,1176,805",attrs:["09006","110.33","TK-Verteilerstationen","601942"]},{id:"604000",name:"2521",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_604000_13_12.png",x:2575044.5120904,y:5728181.15173643,width:13,height:12,area:"1045,982,1046,985,1051,983,1050,980,1045,982,1045,982",attrs:["04204","370.57","TK-Verteilerstationen","604000"]},{id:"603549",name:"2817",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_603549_9_10.png",x:2574966.67754974,y:5728476.67592017,width:9,height:10,area:"1027,912,1028,915,1028,912,1027,912",attrs:["07204","50.99","TK-Verteilerstationen","603549"]}],attrnames:["Baufeld-Nr.","Fläche von Gebäude (m²)","Gebäudenutzung","Datenbankschlüssel"],themeMBR:[2574612.9425512175,5727734.938367478,0.0,2576424.8883674787],adjlevel:3,minx:2570478.0835822644,miny:5724622.825480397,maxx:2580559.7473364314,maxy:5732463.634162688,isWholeImg:false}
    ---- end FOI response ----IE
    Dec 1, 2009 11:02:37 AM oracle.lbs.foi.FOIServlet doPost
    FINEST: ---- begin FOI response ----
    {"foiarray":[{id:"601733",name:"2817",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601733_8_8.png",x:2574975.27918226,y:5728454.28046082,width:8,height:8,attrs:["07204","17.9","TK-Verteilerstationen","601733"]},{id:"601602",name:"182",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601602_8_8.png",x:2575698.56499853,y:5727991.60301204,width:8,height:8,attrs:["Chemiepark","15.15","TK-Verteilerstationen","601602"]},{id:"601657",name:"196",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601657_9_10.png",x:2575464.23754974,y:5727936.67627708,width:9,height:10,attrs:["Chemiepark","50.22","TK-Verteilerstationen","601657"]},{id:"601699",name:"1098",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601699_8_8.png",x:2575508.88499853,y:5727797.76464456,width:8,height:8,attrs:["Chemiepark","17.86","TK-Verteilerstationen","601699"]},{id:"601867",name:"2519",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601867_8_8.png",x:2575096.8020904,y:5728174.40627708,width:8,height:8,attrs:["04202","17.65","TK-Verteilerstationen","601867"]},{id:"601942",name:"9051",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601942_10_9.png",x:2575615.79627413,y:5728946.78592017,width:10,height:9,attrs:["09006","110.33","TK-Verteilerstationen","601942"]},{id:"601951",name:"1021",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601951_8_8.png",x:2576409.49081479,y:5728103.57301204,width:8,height:8,attrs:["11004","17.82","TK-Verteilerstationen","601951"]},{id:"601954",name:"9003A",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601954_9_9.png",x:2575677.68627413,y:5729360.25755269,width:9,height:9,attrs:["90006","76.24","TK-Verteilerstationen","601954"]},{id:"601577",name:"835",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_601577_8_8.png",x:2575900.43372292,y:5728849.73336895,width:8,height:8,attrs:["Chemiepark","20.42","TK-Verteilerstationen","601577"]},{id:"602764",name:"1179B",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_602764_8_8.png",x:2575835.16160305,y:5727748.47046082,width:8,height:8,attrs:["12008","17.67","TK-Verteilerstationen","602764"]},{id:"602246",name:"845",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_602246_8_8.png",x:2575900.30372292,y:5728838.95627708,width:8,height:8,attrs:["Chemiepark","17.85","TK-Verteilerstationen","602246"]},{id:"604000",name:"2521",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_604000_13_12.png",x:2575044.5120904,y:5728181.15173643,width:13,height:12,attrs:["04204","370.57","TK-Verteilerstationen","604000"]},{id:"602648",name:"541",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_602648_8_8.png",x:2576014.50790666,y:5728539.5488283,width:8,height:8,attrs:["04006","17.87","TK-Verteilerstationen","602648"]},{id:"602312",name:"422",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_602312_8_8.png",x:2576254.12499853,y:5728601.20173643,width:8,height:8,attrs:["04002","17.9","TK-Verteilerstationen","602312"]},{id:"603549",name:"2817",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_603549_9_10.png",x:2574966.67754974,y:5728476.67592017,width:9,height:10,attrs:["07204","50.99","TK-Verteilerstationen","603549"]},{id:"603163",name:"9003B",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_603163_7_7.png",x:2575710.40627413,y:5729348.07336895,width:7,height:7,attrs:["90006","7.01","TK-Verteilerstationen","603163"]},{id:"603827",name:"2574",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_603827_7_7.png",x:2574604.20627413,y:5728037.01464456,width:7,height:7,attrs:["Chemiepark","8.27","TK-Verteilerstationen","603827"]},{id:"603094",name:"786",gtype:"3",imgurl:"http://gon14/mapviewer/images/foi/63_t1_S0_603094_8_8.png",x:2575433.72754974,y:5728650.86464456,width:8,height:8,attrs:["07200","17.77","TK-Verteilerstationen","603094"]}],attrnames:["Baufeld-Nr.","Fläche von Gebäude (m²)","Gebäudenutzung","Datenbankschlüssel"],themeMBR:[2574612.9425512175,5727734.938367478,0.0,2576424.8883674787],adjlevel:3,minx:2571039.3893848686,miny:5724622.825480397,maxx:2579998.441533827,maxy:5732463.634162688,isWholeImg:false}
    ---- end FOI response ----

  • Screen instability under Firefox and Netscape

    I have a problem under Firefox and Netscape.
    I use an automatic margin left and right. All work fine under
    IE.
    But it's not good under Firefox and Netscape.
    When the sreen is short, all is also OK. But when I dispay a
    long screen after a short one, the screen is not stable and moves a
    little left.
    To better understand, you can go on
    http://www.tregor.fr and try the
    two following menus:
    - patrimoine/mégalithes --> short screen -->OK,
    - patrimoine/chapelles --> the screen moves some pixels
    left.
    Does anyone know how to solve this?
    Thanks a lot.

    If you make it
    html, body { min-height:100.1%; margin-bottom:1px; }
    then you get it fixed on FF and Safari.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Osgood" <[email protected]> wrote in
    message
    news:eo836v$6pg$[email protected]..
    > Annie Benech wrote:
    >
    >> I have a problem under Firefox and Netscape.
    >> I use an automatic margin left and right. All work
    fine under IE.
    >> But it's not good under Firefox and Netscape.
    >> When the sreen is short, all is also OK. But when I
    dispay a long screen
    >> after a short one, the screen is not stable and
    moves a little left.
    >> To better understand, you can go on
    http://www.tregor.fr and try the
    two
    >> following menus:
    >> - patrimoine/mégalithes --> short screen
    -->OK,
    >> - patrimoine/chapelles --> the screen moves some
    pixels left.
    >> Does anyone know how to solve this?
    >> Thanks a lot.
    >
    >
    > You can use css to get rid of that. Cut the following
    code and paste it
    > into your pages code directly befor ethe clsoing
    </head> tag.
    >
    >
    > <style type="text/css">
    > body, html {
    > height: 101%;
    > }
    > <style>
    >
    > or if you have a style sheet attched you could just put
    this in it:
    >
    > body, html {
    > height: 101%;
    > }
    >

  • What is the difference between sy-uline and uline in sapscripts ?

    hi guys,
    what is the difference bt sy-uline and uline in sap scripts ?
    this is an interview question ?
    also how can we draw a line without using above ?

    Hi ,
    sy-uline is a system field.
    No-difference.  Except that uline is used outside
    the Write Statement
    TO draw a line.
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    OR
    Draw a horizontal line by setting the HEIGHT in a BOX command to 0. Draw a vertical line by setting WIDTH to 0.
    /: BOX FRAME 10 TW WIDTH 0 TW HEIGHT '10' CM
    Vertical line 10 CM long
    /: BOX FRAME 10 TW WIDTH '10' CM HEIGHT 0 TW
    Horizontal line 10 CM long
    ALSO
    You can draw a line by setting the Height or Weidth to 0
    and add a frame. E.g. a horizontal line:
    /: SIZE HEIGHT '0' MM WIDTH '200' MM
    /: BOX FRAME 10 TW XPOS '11.21' MM YPOS '14.81' MM INTENSITY 100
    <i><b>Reward if helpful.</b></i>
    Regards,
    Pritha.
    Message was edited by:
            Pritha Agrawal

  • Firefox and Utilities Won't Open

    Suddenly, Firefox stopped opening. When I try opening Utilities like Activity Monitor to see what's up and Disk Utility to repair permissions, they refused to open too. Other programs - Word, Safari, etc., open no problem. I also noticed that my GPU, which had been running @ 77 centigrade, was up to 85. Other temps:
    CPU Core 1: 67
    CPU core 2: 67
    IStat shows User CPU at 100%, with Safari, my only open app, at 100.5. When I had Word open, it was at the same time also showing 97%. My computer thinks it's a high school football coach: "You gotta give two hundred percent!"
    I ran rebuild on Disk Warrior from the CD, which found one error, but it made no difference.
    Things I've changed recently are:
    4 days ago, old 22" Cinema Display went dead. I was running two, and the other was on its way out, so I replaced with a pair of 23" Samsungs. No problems with that initially, but when I see higher temps with the GPU, I wonder if there's a connection.
    This afternoon, I tried installing SafariStand, which first required installing SIMBL. When I started having problems, I backtracked and deleted SIMBL from the input managers, but it hasn't helped.
    Final difference is that Firefox installed an automatic update. With the Firefox problem, I tried trashing the plist - no help - then the app itself and downloaded a fresh copy - also no help.
    I've got my system and apps on one hard drive and my data on the other.
    Thanks for any thoughts.

    Try each step in order, checking as to whether the issue is fixed before moving on.
    1. Safe boot (hold shift at the chime until the spinning gear) and run your preferred housekeeping utility; Onyx, Cocktail or whatever.
    2. Delete plist files for affected apps.
    3. Reset PRAM. Hold Cmd-Alt-P-R at the chime until it chimes again. Keep holding it down for a total of 4 chimes.
    4. Reset NVRAM. Hold down Cmd-Alt-O-F at the chime until you get an open firmware prompt. Type:
    reset-nvram
    set-defaults
    reset-all
    It will reboot.

  • I had to create a new profile in Firefox and now, I can't access important data such as bookmarks which I desperately need.

    After two days of not being able to open Firefox, I found an article on this website which suggested that I create a new profile. I followed the instructions (which never stated that I should first backup Firefox or my old profile) After creating the new profile, Firefox is once again working fine but, I am unable to access important data such as bookmarks and history.
    I have followed several suggestion on this website but, I am still unable to find my old profile content.

    As long as you did not uninstall Firefox and remove personal data, your old profile still should be in the same location. Depending on how messed up it was, here are two options:
    '''(1) Use the profile manager to start Firefox up in your old profile and create a fresh bookmarks backup.''' If it didn't run, this won't be useful.
    To start in a different profile, Exit out of Firefox and start it up from the Start menu, search box, using
    firefox.exe -P
    Your old profile may have a name like default.
    Then you can create a fresh backup or export of your bookmarks (or both) to a neutral location (e.g., the Documents folder). These articles have the steps for creating these files:
    * [[Restore bookmarks from backup or move them to another computer]]
    * [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]] (note: does not preserve tags you have assigned to bookmarks, if any)
    Exit Firefox, use the profile manager to return to your new profile, then you can either restore the bookmark backup or import the HTML file. The difference is that a restore completely replaces whatever exists now, while an import adds to what you have now.
    * [[Restore bookmarks from backup or move them to another computer]]
    * [[Import Bookmarks from an HTML file]]
    Success?
    '''(2) Restore an old bookmark backup.''' Firefox creates these files regularly, but it might not be perfectly complete.
    To access the old files, I suggest starting from your current (new) profile folder. You can open that from within Firefox using either:
    * "3-bar" menu button > "?" button > Troubleshooting Information
    * (menu bar) Help > Troubleshooting Information
    * type or paste about:support in the address bar and press Enter
    In the first table on the page, click the "Show Folder" button. This should launch a new window showing your ''current'' settings files. Using the address bar of that window, click up to the Profiles folder level and then double-click into your old profile folder, then into its bookmarkbackups folder. Copy the latest backup file to a neutral location (such as your Documents folder).
    Back in Firefox, try to restore the older backup. Note: this will completely replace your bookmarks in this profile, so if you have saved new bookmarks you want to save, please perform the optional steps in the following list:
    * Optional (preserve new bookmarks): [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]]
    * [[Restore bookmarks from backup or move them to another computer]] - use Choose File to go to your Documents folder to get the old backup
    * Optional (add new bookmarks to the restored set): [[Import Bookmarks from an HTML file]]
    Success?

  • What's the difference between gnome, kde and xfce?

    What's the difference between gnome, kde and xfce? Today I heard someone said gnome and kde have more software than xfce. Is that real?
    Thank you.
    Last edited by thesimpsons (2009-04-02 01:50:28)

    Its really a matter of taste, really. KDE is know to be configurable like hell, GNOME very easy to use, and XFCE lightweitgh.
    Keep in mind that whatever desktop environment (DE) you choose, you can use any application in any DE. For example, firefox, a "GTK" application, works without problem under KDE. Or Kile, a latex front-end for KDE, works perfect under Gnome.
    Personnally I prefer KDE. But I mostly prefer KDE applications like the editors (Kate/Kwrite) and file manager (dolphin).
    KDE is slower to start on my EeePC (really small machine) but because it is full featured, I can cut on number of packages installed, so in the end, with the same functionality, I have more room on my disk then using XFCE!
    Just try them, and choose the one you like

Maybe you are looking for

  • Adding a carriage return in an alert box

    Hello I have a user request to display this alert box in the format below: Attention: The owner name has changed on this vessel. Current Name: xxxxxxx: New Name : yyyyyyy Please confirm or deny that this is an owner change. Confirm and Deny are the t

  • My  iTunes Library cleared out after the forced shutdown, how to recover it?

    So here is the thing, yesterday as usual, i was adding songs to my 10,000 tracks library's super organized as i do most of the time. Then i decided to shut down the computer  instead of just putting in of just hibernating him as i always do.. So my h

  • @SUN: Sun VirtualBox 3.1 + VM "Teleportation" ... for VDI 3.1 too?

    I just checked my Facebook account and there I got the announcement from Sun that VirtualBox 3.1 was released today and that it has an exciting new feature: VM "Teleportation". So running VM's can be live migrated without interruption between Virtual

  • Remote Connections

    Does elements 11 support (remote connections)?  In the edit drop down menu (remote connections) is listed.  Can you use to connect with eazel?? Thank You!!

  • White line on horizon

    I have a Sony Alpha a200 camera. Often times when I use the color fetue to desaturate blue in order to darken the sky a white line apears at the horizon or agaist another object that intersects the sky. Does anyone know why or how to fix it? Is this