Losing right edge of page in web browser

I am running into a problem displaying a pdf file in a web browser.  The problem is that the far right edge of one of the pdf's 11 pages gets cut off when the pdf is opened in a web browser.
The one page that is losing its right-hand edge is wider than the other 10.
This problem happens in Adobe Reader version 8 and version 9.  It happens when opening the pdf with FireFox, Chrome, and Internet Explorer.
Is there a property that I need to set that will cause the horizontel scroll bar to appear for pages that are wider than the browser window?
Thanks.

The best approach is to remove all positioning, top, left and z-indexes.
Use CSS margins, padding and floats to align elements on the page.
While you learn CSS, you might find it easier to start with a pre-built CSS layout that has all the columns and containers you will need for your project.  Then it's a simple matter of inserting images and text into your layout.
http://alt-web.com/TEMPLATES/Basic-1-col-fixed.shtml
For commercial CSS Templates that are rock solid and perform well in all browsers, visit Project Seven:
http://www.projectseven.com/products/index.htm
See DW Starter Pages
http://www.adobe.com/devnet/dreamweaver/articles/introducing_new_css_layouts.html
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

  • OMS is up and running but unable to get the console page through web browser

    Hi All,
    I have a wierd issue here.  I have my OMS running successfully, but I am not able access it through HTTPS connection in web browser.  My version of OEM is 11.1.0.1
    It was working till yesterday, I am not sure what happened suddenly that its not accessible anynore.
    I can successfully start and stop my OMS and it gives the status update also .
    Also, my agents can not connect to the OMS , I see that last succesfull OMS heartbeat is not current .
    Any advice for the places to look in will help.  I tried to find the logs under sysman but nothing was there. Also , since I am able to start and stop the OMS successfully I dont have error logs.
    I believe in 11g , when we start OMS , HTTP services also start ? , still I am unable to access it.
    Let me know if any of you can you guide me through it.
    Thanks,
    Krishna.

    Looking over you configuration, it looks like you perhaps have a typo in your weblogic-ejb-jar.xml resource reference. In your weblogic-ra.xml you have defined the JNDI name to be MctEIS11/connFctryCCA but in your resource reference in the weblogic-ejb-jar.xml, you have defined the JNDI name as MctEIS11/connFctryCCA1. In applications where we have an RA and EJB clients, these JNDI names are usually defined as the same and we take advantage of the fact that the resource ref definition in the EJB descriptor makes the resource application scoped (vs. global scoped) so we will usually do application scoped JNDI lookups from within the EJB (i.e. ctx.lookup("java:comp/env/MctEIS11/connFctryCCA")). We do this because we support the WL production redeployment feature which defines as a best practice that all application references be defined at the application scope so they are self contained and not shared between multiple versions of the app that are deployed simultaneously. Your situation may not require use of application scoped lookups so I do not want to give you the impression that it is required. Just sharing our configuration in hopes that it may help you resolve your issue.

  • ITS service not displaying  page in web browser from trnx SICF

    Hello gurus
    iam having a problem when trying to test ITS fro trnx SICF.The web browser window pops up but it doesnt display anything.The service is active and running.
    i checked at os level in dev_icm log file and found the following error:
    [Thr  5] Mon Oct 25 10:30:52 2010
    [Thr  5] *** ERROR => NiBufIConnect: non-buffered connect pending after 5000ms (hdl 22;10.26.24.44:1090) [nibuf.cpp    4611]
    [Thr  5] *** WARNING => Connection request from (0/1/0) to host: 10.26.24.44, service: 1090 failed (NIECONN_REFUSED)
    [icxxconn_mt.c 2340]
    that is the link that is suppossed to be opened in the web browser ::http://lmntrst01.ba.bc.test123.com:8000/sap/bc/gui/sap/its?sap-client=666
    Has anyone faced a similar problem before.It ERP 6 EHP4  on Solaris SPARC
    Any ideas are most welcome

    Hello,
    Please see note 816973 to clarify some basics first.  Especially steps 3 - 6.
    Also, the URL you posted has no service name and would lead to an error anyways, you should test with WEBGUI or IT00 or some other service.
    Edgar

  • CM1312nfi printing faded 1/2 " orange border on right edge of page

    I have a CM1312nfi that is about 4 months old.
    PC's printing to it have XP SP3
    When a color page comes out it has a half inch border on the right side of the page that is orange.  Before I ran the cleaning a couple times it also had a yellow border on the left side of the page.
    THanks for the help

    Hi John, I'm guessing that icon is created and updated by an extension. I'm not sure which one, though. Maybe something that is tracking the trackers, like Lightbeam? Have you tried hovering your mouse over the icon to see whether a tooltip appears, or clicking it?

  • Using Javahelp to open pages in web browser

    We have a program which is written in j2se 1.5 and distributed through webstart. currently we are using the javahelp modules which allow us to open context sensitive help in the help viewer, however we would like to show our pages in a standart browser. is it possible to tweak the javahelp setting to allow that?

    One way to do it would be to overwrite javax.help.plaf.basic.BasicContentViewerUI. This class contains a method "public void idChanged(HelpModelEvent e)". The HelpModelEvent contains the URL.
    Example:
    public class YourHelpContentViewerUI extends BasicContentViewerUI {
        public void idChanged(HelpModelEvent e) {
            ID id = e.getID();
            URL url = e.getURL();
            TextHelpModel model = theViewer.getModel();
            model.setDocumentTitle(null);
           try {
               // Lookup the javax.jnlp.BasicService object
               BasicService bs = (BasicService)ServiceManager.lookup("javax.jnlp.BasicService");
               // Invoke the showDocument method
               return bs.showDocument(url);
           } catch(UnavailableServiceException ue) {
               // Service is not supported
    }Then you would have to register this class before instantiating javahelp:
           UIDefaults table = UIManager.getDefaults();
           Object[] uiDefaults = {
                 "HelpContentViewerUI", <your class>
           table.putDefaults(uiDefaults);

  • Active X web browser vertical scroll bar

    Does anyone know how I can hide the vertical scroll bar on the right of the
    Active X Web Browser?
    Bill

    Bill,
    The bar appears as soon as the contents don't fit the container anymore.
    If your displaying a html file of your own, make the body tag like this:
    This will remove the scrollbar.
    I'm not sore if it is possible to remove the scrollbar in the container for
    every page you load. The scrollbar is a property of the page, not of the
    container!
    If you need it for any document, take a look at the Document property.
    Convert it to a MSHTML.DispHTMLDocument, and use the ExecCommand method.
    This might be a way to hide the scrollbar (but I cannot garantee it). Close
    the ref!
    Regards,
    Wiebe.
    "Bill" wrote in message
    news:[email protected]..
    > Can anyone figure out how to hide the vertical scroll bar aft
    er putting a
    > Microsoft Web Browser component in an Active X container? (p.s. It looks
    > like it's not there at first... but, as soon as you run the VI it
    appears!)
    >
    > Thanks,
    > Bill
    >
    >

  • When displaying images in web browser, next images appears on page where I left last doc

    Hello, I am in need of some help here.
    I have an application that displays PDF images using Adobe Reader X v 10.1.4 through a web browser. What is happening is I view a document and scroll down to say page 2.
    When I leave that document and go the next one, that document opens on page 2.
    Is there anything I can do in the setting of Adobe or the way that I am making my call to show the image through the web browser to display the next image at the top of the page, rather than displaying it where I left off on the last document?
    I have tried unchecking the option for Restore last view settings when reopening a document and also open cross-document links in the same window. Both of these had no effect on the issue I am encountering.
    Any help would be greatly appreciated.
    Thanks!
    Scott

    I am not sure how to fix the problem using the FGL framework, but here is a way to get the right result
    In the CSS file under the @media only screen and (min-width: 769px) section, modify the following style rules
    #menu {
        clear: both;
        float: left;
        margin-left: 0;
        width: 20%;
        display: block;
        vertical-align:top;
    #content {
        clear: none;
        float: right;
        margin-right: 0%;
        width: 80%;
        display: block;
    Having said that, you will do well to scrap FGL and have a look at Bootstrap

  • I can right click to copy a web page link, but it will not let me rick click again to paste the link to the body of text

    I use firefox as my web browser. My start page is www.msn.com where I can access hotmail. Once I have logged into hotmail and click on (Create) new mail I have this problem. If I go to a web page link, ie; www.msn.com, I can highlite the address and then right click to copy. When I go to the body of the email I'm working with, and right click again to paste I DO NOT GET A SCREEN THAT HAS PASTE ON IT. I tried this again by logging into Internet Explorer signed into my hot mail account and tried it again. It works in IE with hotmail. So I feel this problem has been encountered with a firefox update, because I did not have the problem in the past.

    Hi,
    You may have to make sure that '''Disable or replace context menus''' is enabled (tick) in '''Tools''' ('''Alt''' + '''T''') > '''Options''' > '''Content''' > '''Advanced''' (on the right end of '''Enable Javascript'''). [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Content%20panel Options > Content]
    [https://support.mozilla.org/en-US/kb/Options%20window Options]
    If the problem persists please check in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • Edge Code will not load in web browser

    My OEM edge code will not load in web browser after it has been uploaded to the server. I am using dreamweaver & the OEM file.
    The images are all grouped & labeled properly (within Edge Animate). Note the website will not load with ANY web browsers UNLESS you hit the refresh button or reload the web address.
    www.anndominion.com
    Can somone please tell me what is going on or how to fix the problem? ;(
    Here is the code for the website too.
    Any help would be great!
    <!doctype html>
    <html>
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
    <title>Welcome</title>
    <!--Adobe Edge Runtime-->
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <script>
      var custHtmlRoot="edgeanimate_assets/Home/Assets/";
      var script = document.createElement('script');
      script.type= "text/javascript";
    script.src = custHtmlRoot+"edge_includes/edge.5.0.1.min.js";
      var head = document.getElementsByTagName('head')[0], done=false;
      script.onload = script.onreadystatechange = function(){
      if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
      done=true;
      var opts ={
        scaleToFit: "width",
        centerStage: "none",
        minW: "0",
        maxW: "undefined",
        width: "1500px",
        height: "800px"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('Home', 'EDGE-292846011', opts,
      {"style":{"${symbolSelector}":{"isStage":"true","rect":["undefined","undefined","1500px", "800px"],"fill":["rgba(255,255,255,1)"]}},"dom":[{"rect":["716px","356","88px","88px","aut o","auto"],"id":"preloader5","fill":["rgba(0,0,0,0)","images/preloader5.gif","0px","0px"], "type":"image","tag":"img"},{"rect":["645px","480px","229px","79px","auto","auto"],"font": ["Arial, Helvetica, sans-serif",[24,""],"rgba(0,0,0,1)","normal","none","","break-word","normal"],"id":"Text" ,"text":"Please Tap Refresh <br>To Load Content.","align":"center","type":"text"},{"rect":["555px","283px","361px","103px","auto" ,"auto"],"font":["Arial, Helvetica, sans-serif",[24,"px"],"rgba(0,0,0,1)","400","none solid rgb(0, 0, 0)","normal","break-word","normal"],"id":"Text2","text":"","align":"center","type":"text" }]}, {"dom":{}});
      script.onload = script.onreadystatechange = null;
      head.removeChild(script);
      head.appendChild(script);
      </script>
    <style>
            .edgeLoad-EDGE-292846011 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
      <body>
        <div id="Stage" class="EDGE-292846011"></div>
        </body>
    </html>

    Keith,
    Make sure the Cluster configuration is right. When did you start seeing this problem?
    Host A: Dispatcher->server 0, server 2
    Host B: Dispatcher->server 0, server 2
    i.e The instance IDs are mapped right.
    Also try to hit the individual servers in the cluster the following way.
    http://hostname1:50000/irj/portal;sapj2ee_irj=instance_id sends a request to server 0.
    http://hostname2:51000/irj/portal;sapj2ee_irj=instance_id sends a request to server 1.
    This may give more clues. Unfortunately I don't have access to EP6 SP2 to lookup and tell you the right parameters to look for.
    Regards
    -Venkat Malempati
    Message was edited by: Venkat Malempati

  • Cannot right click in web browser

    Cannot right click to save pictures or to open up another tab inside web browser.

    There are other things that need attention:
    You have or had an extension installed (NET_mmhpset) that has changed the user agent from Firefox/3.6.13 to Firefox/3.5.5.<br />
    '''Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.13) Gecko/20101203 YFF3 Firefox/3.5.5 NET_mmhpset ( .NET CLR 3.5.30729; .NET4.0C)'''
    You can check the general.useragent prefs on the about:config page.<br />
    You can open the about:config page via the location bar, just like you open a website.<br />
    Filter: general.useragent<br />
    If general.useragent prefs are bold (user set) then you can right-click that pref and choose Reset.<br />
    See:
    *[[Web sites or add-ons incorrectly report incompatible browser]]
    * [[Finding your Firefox version]]
    * http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • Pages not available in web browser

    When I try to preview my web pages in the browser I get error
    404 come up. The root file tests fine and I checked with my hosting
    company and the connection is fine. I must have done something
    incorrect when I set up the individual pages. Can anyone shed some
    light on this please?

    > This is when I try to view the page on the remote
    server.
    Open the dw Files Panel.
    Connect to the remote site.
    In the root level of the remote site, are there folders there
    that you did
    no create? With names like www or public_html or htdocs or
    similar?
    If yes, put that folder name into the box labeled "host
    directory" in the
    remote info of this site definition.
    connect and upload the files. Are they there now?
    Second possible:
    What is the filename of this site's "homepage" ?
    It should be lowercase index.htm or index.html for 99% of the
    commercial
    hosting out there. If it is something else, right-click on
    the "homepage"
    file in the Dw files panel and rename it.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Safari web browser doesn't load any web page...!??

    I have installed Safari Web Browser 5.1.2 on my acer laptop running windows 7 os wid 4 gb RAM, 512 MB of Intel Graphics and an i5 Processor..
    On entering any url and then clicking enter, the loading progress commences upto a small fraction of the whole bar and stops right there. The same process repeats in new tabs and irrespective of any page. I have reset the browser many a time and also attempted emptying the cache and erased history ONLY IN VAIN....!
    PLEASE suggest how I get this browser to work.
    P.S.
    The i5 processor is 64-bit, and 32-bit mozilla and google chrome work well, with occasional crashes due to faulty plug-ins(basically flash content)....

    thats great, am ACER laptop user too. model travelmate timeline X8572T, just equal to your´s, accept I3 processor (Intel graphics, HD LED LCD, 4GB, SSD Samsung 470 upgrade, OS WIN7 and Linux (L)ubuntu 11.10 speedy Ubuntu.
    ...installed first new safari 5.05, then 5.12, resized to old version 4.05 ---- same error "can´t connect to any website", get message in "de" equal to "safari can´t open website"  --- f.e. can´t open http://www.news.google.de, cause server can´t reply
    what´s wrong with new safari (???), I remember, tested in past a running version 3 on my old Samsung laptop, he´s just in clouds (r.i.p), but no.3 works, but was a bit slow.
    have no problem using Chrome 17, FFox 11 (answering from) and Opera 11.6 with any website at all... 
    ...and at least something special, "have a quiet earth in NZL, Christchurch, these days, no quake..."
    greets from german coastline...

  • Web Browser page is not getting displayed

    Hi,
    I have logged into SRM server thrugh web Browser.
    Roles are attached to the user.
    When i Click the Go shopping  -PAGE cannot be displayed " error is appearing.
    For some of the Nodes example --default setting page is displayed.
    We are in SRM 5.0 .
    The error is given below
    This is my URL
    *http://orange.dht.com:8000/sap/bc/gui/sap/its/bbpstart?sap-client=001&sap-language=EN*
    The page cannot be displayed
    If you typed the page address in the Address bar, make sure that it is spelled correctly.
    Regards
    G.Ganesh Kumar

    Hello Ganesh,
    As written by Iftekhar, check table TWPURLSVR.
    You can also have a look at OSS note 1145305 - SRM menu does not work as expected or any other SAP note dealing with this table.
    Regards.
    Laurent.

  • How do I view my web pages in the browser again?

    I was able to work on my web pages in Dreamweaver MX2004 and view them in a browser until 3 days ago.  I have also been able to make changes on my web pages which showed up in my website until around 3 days ago.  i am very frustrated. I can no longer view them in a browser or make changes that show up on my website.   Any suggestions?

    I didn't install anything new.  I am using Windows 7 on a new computer and had successfully gotten my Dreamweaver installed and running.  I was able to view my pages in the browser just fine.  I made changes to my site just fine.  Now when i go to F12 to preview in the browser, all I get is a blank page showing my connection number to my web host and in little letters at the top, it says "pageok".  I have always seen the page and could correct any mistakes, but now I can't see the page.  It's also unbelievable the changes I have tried to make on some pages show up in my local and remote pages on my computer but do not show up when I go to the website.

  • How do I access the iTunes Preview page with a web browser?

    Does anyone out there know how to access the iTunes app preview page with a web browser?  So far the only way I've been able to get there is by Googling the app with the term 'iTunes preview'.  Is that really the only way?  The iTunes page itself has no obvious link to the app list.
    Thanks.

    Thanks, but I should have been more specific.  I was trying to access the iTunes app preview page on my PC through Chrome.  While I have an iPad, it's not convenient to have to refer to it every time I want to discuss an iOS app.

Maybe you are looking for