Dreamweaver 8 Display Mode renders website differently from IE7 and Firefox2

I'm trying to create a webpage with the following rows setup:
Header
Navigation/Issueinfo (2-column)
Left/Middle/Right (3-column)
OtherLeft/OtherRight (2-column)
Footer
It renders correctly in Dreamweaver 8's display window, but in IE7 and Firefox 2 the Navigation/Issueinfo row renders differently, and I can't figure out what the problem is. I've attached images of D8 and IE7 as well as the HTML and CSS codes. All help is greatly appreciated!
Dreamweaver 8's Display View: http://img28.imageshack.us/i/70399536.jpg/
Internet Explorer 7: http://img3.imageshack.us/i/ie7e.jpg/
HTML:
<!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>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<div id="container">
<div id="header">
</div>
<div id="navigation">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="archive.html">ARCHIVE</a></li>
<li><a href="blogs.html">BLOGS</a></li>
<li><a href="calendar.html">CALENDAR</a></li>
<li><a href="staff/staff.html">STAFF</a></li>
<li><a href="msms/msms.html/">MSMS</a></li>
</ul>
</div>
<div id="issueinfo">
VOLUME 21 ISSUE 3
</div>
<div id="left">
    Left side text...
</div>
<div id="right">
    Right side text...
</div>
<div id="middle">
    Middle column text...
</div>
<div id="otherleft">
Otherleft text...
</div>
<div id="otheright">
Otherright text...
</div>
<div id="footer">Footer...</div>
</div>
</body>
</html>
CSS:
/* CSS Document */
/* Specify blanket rules for all elements */
body {
    color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
margin:0px;
    padding:0px;
background-color:#000077;
a{
color:#000077;
text-decoration:none;
a:hover{
text-decoration:underline;
#container {
width:1020px;
margin:0px auto 0px auto;
background-color:#FFFFFF;
#header {
    clear:both;
    width:1020px;
height:130px;
background-image:url(images/banner.jpg);
#navigation {
float:left;
width:800px;
text-align:center;
background-color:#000077;
#navigation li{
display:inline;
list-style-type:none;
padding-right:30px;
#navigation a{
color:#FFFFFF;
text-transform:capitalize;
#issueinfo {
clear:right;
color:#FFFFFF;
text-transform:capitalize;
text-align:center;
margin:0px 0px 0px 800px;
background-color:#000077;
#left {
    clear:left;
float:left;
    width:318px;
padding:0px 10px 0px 10px;
#right {
    float:right;
    width:318px;
padding:0px 10px 0px 10px;
#middle {
margin:0px 340px 0px 340px;
padding:0px 10px 0px 10px;
#otherleft {
float:left;
width:510px;
#otherright {
margin:0px 0px 0px 510px;
#footer {
clear:both;
color: #FFFFFF;
text-align: center;
background-color: #000077;

DW Design View is only an approximation of what various browsers will do.
Try this (note changes in red):  Tested in FF 3.6.
#navigation {
    float:left;
    width:800px;
    text-align:center;
    background-color:#000077;
    line-height: 2em; /**ADD THIS**/
#issueinfo {
   clear:right; /**REMOVE THIS**/
    color:#FFFFFF;
    text-transform:capitalize;
    text-align:center;
    margin:0px 0px 0px 800px;
    background-color:#000077;
    line-height: 4em; /**ADD THIS**/
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb
http://alt-web-design.blogspot.com/

Similar Messages

  • How bapi different from session and call transaction?

    how bapi different from session and call transaction?
    thanks in advance.

    For one, Batch Data Communication (BDC) is older. Business Application Programming Interface (BAPI) came later, about 10 years ago (you can see this already from the name, which contains marketese like "business" ).
    More important though, they are different technologies. With BDC you build the "batch input transaction" yourself, with an ABAP program which creates the "batch input session" ("Batch-Input-Mappe" in german). You then take that session, like an object, and "run" it on a system (most of the time, this is done on a local system by the administrators, after it has been tested for correctness).
    With BAPI, a system (local or remote) exposes its interface to you through some kind of Remote Function Call (RFC). Practically, it tells you: "What do you want to do? Insert that data into Materials Management? Here is the function and the the parameters you have to use for each record". You only work with the Interface - the exposed function. How this function works does not have to interest you. You don't have sessions to "run", you fire your function calls filled with data, one after another and you're done.
    BAPI can be run remotely. With BDC, you probably have to call the administrators of the remote system and send them the session you created for them to run. With BDC you go through the whole transaction in one BDC session, with BAPI you may need more than one "BAPI calls" to do this.
    With BAPI you don't fill obcure field names with values, you just fill the parameters. You can use a BAPI from inside your ABAP program to let a "business object" do some clearly defined work for you, then you can continue with your code doing other things. You don't do this with BDC. With BDC you write a dedicated program that creates the "session", which is then executed separately.
    Batch Data Communication (BDC) is the oldest batch interfacing technique that SAP provided since the early versions of R/3. BDC is not a
    typical integration tool, in the sense that, it can be only be used for uploading data into R/3 and so it is not bi-directional.
    BDC works on the principle of simulating user input for transactional screen, via an ABAP program. Typically the input comes in the form of a flat file. The ABAP program reads this file and formats the input data screen by screen into an internal table (BDCDATA). The transaction is then started using this internal table as the input and executed in the background.
    In Call Transaction, the transactions are triggered at the time of processing itself and so the ABAP program must do the error handling.
    It can also be used for real-time interfaces and custom error handling & logging features. Whereas in Batch Input Sessions, the ABAP
    program creates a session with all the transactional data, and this session can be viewed, scheduled and processed (using Transaction SM35) at a later time. The latter technique has a built-in error processing mechanism too.
    Batch Input (BI) programs still use the classical BDC approach but doesnt require an ABAP program to be written to format the
    BDCDATA. The user has to format the data using predefined structures and store it in a flat file. The BI program then reads this and
    invokes the transaction mentioned in the header record of the file.
    Direct Input (DI) programs work exactly similar to BI programs. But the only difference is, instead of processing screens they validate
    fields and directly load the data into tables using standard function modules. For this reason, DI programs are much faster (RMDATIND - Material Master DI program works at least 5 times faster) than the BDC counterpart and so ideally suited for loading large volume data. DI programs are
    not available for all application areas.
    Business Add-In (BADI) are a new SAP enhancement technique based on ABAP Objects.
    They can be inserted into the SAP System to accommodate user requirements too specific to be included in the standard delivery. Since specific industries often require special functions, SAP allows you to predefine these points in your software.
    As with customer exits two different views are available:
    In the definition view, an application programmer predefines exit points in a source that allow specific industry sectors, partners, and customers to attach additional software to standard SAP source code without having to modify the original object.
    In the implementation view, the users of Business Add-Ins can customize the logic they need or use a standard logic if one is available.
    In contrast to customer exits, Business Add-Ins no longer assume a two-level infrastructure (SAP and customer solutions), but instead allow for a multi-level system landscape (SAP, partner, and customer solutions, as well as country versions, industry solutions, and the like). Definitions and implementations of Business Add-Ins can be created at each level within such a system infrastructure.

  • Font differs from Linux and Windows ?

    Hi, i just want to ask, are fonts different from windows and linux in applet. I use a standard courier font.
    For example, if i make an applet with courier font texts in linux, and make the texts wrap themselves, they will run ok in linux. But if i run the compiled applet in windows, the wrapped text somewhow got truncated.
    But if i compile the applet in windows, it will look ok in linux and windows.
    I've tried replacing my courier fonts in my /usr/java/jdk/jre/lib/fonts/cour*.ttf with the cour*.ttf from c:\windows\fonts with no effects .. Applets compiled and run ok in linux doesnt work in windows. They must be compiled in windows to run ok in both.
    Why is that ?
    Does the compilation use the fonts in the jdk lib or the system fonts ?
    I'm so confused T_T
    Please Help

    How do I get Mac OS 10.4.4 and Word X for Mac to see
    all the characters in the Word for PC document
    formatted in Times New Roman?
    There's no way with Office X, which can't do Unicode Greek. You need to upgrade to Office 2004 which is Unicode-savvy and installs in your Mac the same Times New Roman with Greek, Cyrillic, Hebrew, and Arabic which is used by WinXP. An alternative might be AbiWord or NeoOffice/J.

  • I brought a new ipad mini with retina. The color saturation is too low to me, especially the purple. My wife started to complain because the color is really different from iphone and ipad. Can user adjust that?

    I brought a new ipad mini with retina. The color saturation is too low to me, especially the purple. My wife started to complain because the color is really different from inphone and ipad. Can user adjust that?

    Other than a couple of minor adjustments, such as the one that Diavonex suggested above, there is nothing that a user can do in settings to adjust color. There is no way to calibrate the color like you can do with a computer monitor.

  • All fields should be in Display mode except Plant field in Va02 and VA32

    Respected Guru's,
    I want all the fields in VA02 and VA32( Change t-codes)  to be in display mode, further user should be able to change the Plant value alone in sales tab.
    Is it possible to restrict it with the help of Authorization or does it requires customization.
    Please Help me in this regard.
    Thank tou,
    Daya

    Thanks for your information
    What is the transaction code for that
    ME29N - DISPLAY SCREEN SETTING ALREADY I HAVE DONE
    account assignment category is working only at item overview level, input - k iS IN DISPLAY MODE
    NOT account assignment tab fields
    please give the transaction code information so that it will be helpful for me

  • Firefox 7.0.1 displays website differently from IE, Chrome, Safari, Firefox 3 and Safe Mode

    Hi
    The website www.littleones.ie displays incorrectly in Firefox 7.0.1.
    DIVs are shifted down the page instead of appearing side by side. It is OK in IE, Chrome and Safari, Firefox 3 and in FireFox Safe Mode.
    After a few tests I find that I can fix the problem by disabling hardware acceleration in the Options menu.
    Disabling Plugins did not fix the problem.
    Problem has also be seen on another PC using Firefox 7.0.1.

    Thanks for your response.
    I'm using an HP laptop with 'HP Support Assistant' which automatically keeps the system up to date. The littleones.ie website belongs to my client. The problem is that visitors to the Little Ones website may be experiencing this problem - which will be affecting the effectiveness of the site. We can't ask visitors to littleones.ie to update their graphics drivers before browsing the site!!
    Someone else I have asked to view the site had the same problem so it is not just my PC- I'll get a spec of their system if that would help.
    Do you know if a website can ask a browser not to use hardware acceleration?
    I've used Firefox on many websites without this problem. Is their something in the HTML or CSS of littleones.ie which could be upsetting Firefox /HWA?

  • Safari renders page differently from Safari Mac.

    I tried to see some web cartoon with my iPad, and I found he image width is shrunk so it's not good to see cartoon.
    I tried to zoom the page but the image displayed as low-res image with pixel doubling.
    If I try same page with Safari for Mac, image looks fine.
    Also if I save image from my iPad and see it with Photo app, it also has high-res quality.
    I found same problem for two different web cartoon sites.
    Please find the difference from attached screenshots.
    http://gallery.me.com/pighair/100173

    You should contact the website and let them know. Only they can fix it.

  • Firefox 13 Rendering Websites Differently Than FF11/12

    CSS and Image rendering problems ONLY with Firefox 13...
    I am a web developer, so browsers displaying code differently is not foreign. What is foreign to me, is having Firefox be the only browser that's rendering the code incorrectly. Please see two examples below:
    http://powellcareandrepair.web12.hubspot.com/
    http://www.facebook.com/sv.capella1
    In Powell Care the flash button is off by one pixel causing a white line down the side of the button. This only occurs in FF13. The site renders correctly in ie9, Chrome, Safari, Firefox 11 and Firefox 12.
    In the second example the Facebook page has a profile picture which lines up with the cover photo. Again this works correctly in ie9, Chrome, Safari, Firefox 11 and Firefox 12, but not Firefox 13.
    My question is what's going on here? How does code that previously worked in the last two versions of Firefox (11+12) now all of the sudden not work in 13?
    Any help would be appreciated. Is there something that I've coded wrong, with the exception of Facebook which will not change. This doesn't make sense to me.

    You may get lucky and have a reply here you probably have a better chance on the mozillazine forum
    * http://forums.mozillazine.org/viewforum.php?f=25
    It is probably a good idea to check the site code compliance using the W3C validator
    * http://validator.w3.org/unicorn/
    * interesting to note your link does not pass, neither does this forum thread link !
    Firefox does try to keep up with the standards, so there may well be some differences between versions see for instance
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=695222 Bug 695222 - Implement column-fill property of CSS3 spec ]
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=764567 Bug 764567 - Fix and re-land patches to support multicolumn 'column-fill' property ]
    Note also comments in locked thread [/questions/930756]
    P.S. <br/> You may be able to spot something in the release notes that accounts for the difference:
    * http://www.mozilla.org/en-US/firefox/13.0/releasenotes/
    ** https://developer.mozilla.org/en/Firefox_13_for_developers
    *http://www.mozilla.org/en-US/firefox/13.0.1/releasenotes/
    ** [https://bugzilla.mozilla.org/show_bug.cgi?id=733614 Bug 733614 - CSS 'height' property on a multi-column block is not respected ]
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=767612 Bug 767612 - tracking bug for build and release of Firefox 13.0.2 ]

  • HT3921 is mini display port to VGA different from mini dvi to VGA

    What is the connector you need to buy to connect Macbook 13 inch(late 2009) to a LCD projector and LCD-HD Television.

    The Late 2008 model 5,1 Aluminum Unibody and the Late 2009 model 6,1 and Mid 2010 model 7,1 White Unibody have a Mini DisplayPort. The Early 2006 model 1,1 through Early 2008 model 4,1s plus the Early and Mid 2009 model 5,2s have Mini-DVI ports.
    To be sure which model you have go to the Apple in the upper left corner and select About This Mac, then click on More Info (and then System Report if you’re running 10.7 Lion). When System Profiler comes up check the Model Identifier and post it back here.
    If you do have the model 6,1 it will depend on what input plug you'll be using on your TV. VGA, DVI or HDMI. You'll need a Mini DisplayPort adapter and a cable from that to your TV. Here's the various types of Mini DisplayPort adapters on Amazon.com http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=min i-dvi&x=9&y=13#/ref=nb_sb_ss_sc_2_16?url=search-alias%3Daps&field-keywords=mini+ displayport&sprefix=mini+displayport&rh=i%3Aaps%2Ck%3Amini+displayport
    If you connect the MacBook using a Mini DisplayPort to HDMI adapter you will probably need to use external speakers or a 3.5mm stereo headphone jack to RCA sound plugs connected to a stereo sound system if your TV doesn't have separate RCA input plugs or a 3.5mm stereo input plug for audio with the HDMI plug. The Mini DisplayPort to HDMI doesn't carry audio unless you have the Mid 2010 model 7,1 and there're no audio plugs on most TVs to work with HDMI since it's expecting audio with the HDMI.
    If you have the Late 2009 model 6,1 White Unibody with the Mini DisplayPort rather than the Mini-DVI there is an adapter that can combine video and audio to HDMI.
    http://www.monoprice.com/products/product.asp?c_id=104&cp_id=10428&cs_id=1042802 &p_id=5969&seq=1&format=2

  • Firefox 5 is displaying a web page differently from Firefox 4.

    Certain pages at www.shairfare.com are misaligned in Firefox 5, but they work fine in Firefox 3 and 4. I can't figure out why this happens.
    I had to create an override .css file to handle safari and Chrome, because of the differences in the way widths are computed when padding is used (some browsers include the padding in the width, some do not). It may be the case that Firefox 5 uses the same rendering engine as Chrome and Safari (does it?), in which case I could simply use the same override .css file when FF5 is in use. Could you tell me how to load a .css file ONLY when FF5 is in use?
    Thanks!
    Marc

    go to View Menu -> Zoom -> click "Reset"
    go to View Menu -> Page Style -> select "Basic Page Style"
    go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. If above suggestions don't work then
    go to Tools Menu -> Add-ons -> Extensions section -> REMOVE any Unwanted/Suspicious Extension (add-ons) -> Restart Firefox
    You can enable the Trustworthy Add-ons later. Check and tell if its working.

  • I cant' control the font - size displayed during edition is different from the ones (1 or more - never know) sent.

    1) When I edit my e-mail, the font is always the same - arial 10 pts. But once the e-mail is sent, what I can see in my 'sent' box and what the receiver gets is all messed up, especially when I have pasted some text. There are parts with huge font and there are with such a small one that it's difficult to read it. Or the whole text is extremely large or tiny.
    I need to write in HTML for I often must highlight some parts. I searched many forums but nowhere found any answer.
    2) When i get an e-mail the problem is similar: it can be written with the letters you can distinguish from the other side of the room or on a contrary - you would use binoculars to read it comfortably. The least font is set to 10 pts.
    Thunderbird 31.3.0, Win 7 (64).

    From John Waller: “If you're using IE8, hit F12 to launch Developer Tools which give you a point and click method of locating the relevant CSS rule on screen.”
    I have Internet Explorer 8 (IE8) so tried this method.
    This sounded like another promising possibility; however, I have not been able to change the font size in my post using this method.
    I have gone to Dashboard > Posts > Edit > then moused-over my post > clicked on "edit" and then hit F12. An enormous amount (20 pages or more) of CSS appears. I tried picking out the font size that I thought pertains to the post (under Text Area), and I have changed the font size from 13px to 24px; however, I have not been able to “save” the new setting. When I go back to it, it is back to 13px.
    As a result, I have not been able to use a trial-and-error method to establish which font size I must change in order to change the font size of my post.

  • Display issue : it looks different in muse and with all browsers please help!

    Hello,
    I'm new on this forum and a really beginer with adobe Muse and website design...
    Also I'm french so please forgive my aproximative English...
    Here is my problem:
    I'm triyng to create a website with Muse and first it seems to be easy.
    I use a free template, and now I'm designing the page master but the problem is  when I try to preview it appears like the picture I enclosed.
    The target appearance is in the second file enclosed.
    My page seeting is :
    I tried to find a solution by myself but I can't find what's the problem...I tried to preview in an another screen and browser but it's the same problem...
    Can somebody help me please? It will save me...this is my first work project ever and I want to do it well !
    Thank you

    Hi
    As you are using a very wide page 2000+ , browser adds a scroll to view the page content.
    Please try to scale down the page width and height which will solve the issue.
    You can set width and height from page properties but if you add contents then page will stretch according to the page elements added.
    Thanks,
    Sanjit

  • Output differs from Printpreview and Spool ?

    Hello All,
    Let me tell u my actual problem.
    1. When I see the output of the PO in the Print Preview it's coming perfectly.
    But when I see the output of the same PO in the Spool it's not the same.
    2. For this reason I want to Debug the PO in both the cases i.e Print Preview case and Spool Case.
    3. When I'm trying to debug in the Print Preview case it's going into the script and I'm able to check the values. But that'S not my Problem .
    My Problem is with the Spool case bcoz I'm getting a different output when compared to that of the Print Preview Output.
    4. SO I want to debug the script whn I choose the Spool Option .
    i.e Path is : ME22N --> GIve a PO --> Click on Messages Tab --> Select any of the Processed Record and Press Repeat output and --> SAVE.
    Before pressing the SAVE Button I pressed /h and started to debug .
    But It's not going into the script at all.Instead it is going to some other standard program and creating a spool request.
    5. My first Qn is : When viewed from the Spool will it go into the script or not ?
    My second Qn is : Hw to debug the script when we are seeing the output from a SPOOL i.e from the Path :
    ME22N --> GIve a PO --> Click on Messages Tab --> Select any of the Processed Record and Press Repeat output and --> SAVE.
    Hope I'm clear now in my Explanation.
    Regards,
    Deepu.K

    It seems to be an issue with the Output Device. For the Spool, try to print on a different printer/ or the default SAP output device (SAPWIN device type).
    If the output comes correctly, then the issue is with the Driver.
    Regards,
    abhishek

  • Rendering blue files from PP and queueing to AME locking up

    Have upgraded my mac with the latet OS and CS5.5.
    I haven't got to the bottom of things yet but my adobe media encoder locks up when queued renders start.
    SO... what's the use of AME if I can't use the encoder for queueing etc.
    I have also been getting a blue only output from various rendered files from PP, when I delete alphas from files on the timeline
    PP seems to render normally.
    Too busy to nut things out at the moment, trying to get files out the door, anyone got any ideas.
    One would of thought 5.5 would not introduce probs that were not evident in version 5 !!

    1. Why is that?
    Files on the desktop slow down your machine, because the Finder has to constantly keep redrawing the icons and names.
    2. I have a widget called Maintidigit that I run usually once a week that does daily/weekly/monthly maintenance. I also repair permissions maybe once/twice a month.
    These are not necessary. Read this:
    http://www.macworld.com/article/133684/2008/06/maintenance_intro.html
    The thing you're not doing that you should be is repairing the hard drive periodically. Doing it before installing every OS update would be sufficient.
    I have a time capsule so I have backups running but I've used a program to make that run every 4 hours. I guess that's about it.
    Backups are good, but that's not a diagnostic.

  • Query displays no output when run from sqlplus and from procedure its displ

    Hi Guys,
    When i ran the below query, it gives me "no rows selected". I made a procedure for the below query by making it a cursor. I just tried to display the total number of records in the procedure. When ran, it showed me some number. I dont understand , why when ran just as a sql query didnt showed any output and when ran as a procedure showing some output.
    select cust_account_id
    ,related_cust_account_id
    ,object_version_number
    ,ship_to_flag
    ,status
    from apps.HZ_CUST_ACCT_RELATE re
    where
    nvl(re.bill_to_flag,'N') ='N'
    and re.customer_reciprocal_flag = 'Y'
    and re.status = 'A';
    declare
    cursor c1 is the above query
    v_count number;
    begin
    for rec in c1 loop
    v_count := v_count + 1;
    end loop;
    dbms_output.put_line(' V-Count is:' || v_count);
    end;
    also tried to print the values of the select when count is 10, it showed some values. But why is it not showing any values when ran just as a sql query.
    Help Appreciated
    Thanks

    Thanks Warren n Dmytro,
    Actually, the problem is that table has 1769645 rows of data. I wrote a cursor as defined above in a procedure. With that where condition, it doesnt have any values and so displays no rows. Its taking 5 min to run that query and get me the output.
    In the begin, I want to open that cursor using "for rec in c loop" and write one more select statement which is:
    begin
    for rec in c loop
    begin
    select count(*) into l_count
    from hz_cust_acct_relate_all
    where cust_account_id = rec.cust_account_id
    and related_cust_account_id = rec.related_cust_account_id;
    exception
    when others then
    dbms_output.put_line(-265676,"SOme err msg");
    end;
    if l_count = 0 then
    now my question is, if my cursor is not returning any rows, then the query written to get l_count will be executed or not. I am passing the cursors cust_account_id and related_cust_account_id values to this query. but that cursor is returning no data.
    so what will happen to the code that i wrote. Will it hang or will it continue. Or should i write when no_data_found exception to handle when no rows are returned.
    or can in include " exit when c%notfound after for loop". when we use open fetch and close, then we will write this exit when. can we write when using for rec in c loop syntax.
    coz when i run that procedure, it jsut hangs like that forever. how to handle it or how to tune it.
    help appreciated
    thanks

Maybe you are looking for

  • How to prevent a number field from getting summed?

    I want to display the # of clients per a certain ID number. (In order to show the duplicate records by setting a filter in the # of clients field). However, this works if the ID number is a text field... but it doesn't work if the ID number is a metr

  • Control on the Creation of Inspection lot

    Hi all, In my requirement, we have a material which is subcontracted and in the process, we will have some rejection. Hence the rejected material will be received in to the system with an account assignment category (cost centre). For both the line i

  • 500 Internal Server Error (java.lang.NullPointerException) - email config

    I have installed collaboration suite on xp. The install has completed and I am in the process of setting up oracle email. Part of the email configuration says that I must stop the sendmail services and start the email listener. Then I should change t

  • /bin/sh: bad interpreter: Operation not permitted error OS X Lion

    I am trying to install omnetpp-4.2.2 on OS X Lion. When I try to configure I get the following error msg: -bash: ./configure: /bin/sh: bad interpreter: Operation not permitted. Sudo ./configure didn't help. Highly appreciate your help.

  • How do i enable an account that a parents had disabled

    my mom disabled my account a few weeks ago and now i cant use it at all . but i have moved to my dads and now i wanna enable it . how do i do that ?