9300 not showing vertical scroll on website

On Os 5 the website scrolls fine but on Os 6 it does not. In the CSS I have height set to 100%. If I set the height to a certain px then the scroll shows on Os 6. Any suggestions?

Hi,
Are you opening that document within Word Online App? I see we only have Editing View and Reading View in Word Online. Please first check the size of your document under PAGE LAYOUT.
Please first try with a different browser and see if issue presists.
I would suggest you to install any updates that available to your Windows system, include updating the graphics driver. Then try again.
If I have understood you incorrectly, please feel free to post back.
Thanks,
Ethan Hua CHN
TechNet Community Support

Similar Messages

  • I am using a multiline textbox and the problem is its not showing vertical scrollbar in safari browser.

    I am using a multiline textbox and the problem is its not showing vertical scrollbar in safari browser.

    If you are having problems scrolling within a frame then you should be able to use two fingers within the frame to scroll

  • My Firefox does not show the scroll bar and the search is not in the centre of the screen

    Firefox does not show the scroll bar and search is not in the centre of the screen
    Hope you can help
    Regards
    Waheed

    CTRL + B

  • Csv/excel not showing vertical .  it is displaying horizontally plus

    hi i have this code that displays html, pdf or csv/excel
    download.
    htmll report and pdf is ok but the csv/excel download
    displays/ works but
    it shows accross instead of down.
    on my html to csv it is not dispalying vertically /down and
    it shows the html on the excel download
    also
    per cel it has both the plotid and the ceenum. it displays
    horizontally.
    Help
    Thanks in advance.
    <!-------------------- here are the code in 2 .cfm pages.
    here is the first page where the user selects
    html
    pdf
    escel/csv----------then it goes to a action page act_lop.cfm
    <h1>LOP Reports </h1>
    <div align="center">
    <form name="theForm" action="act_lop.cfm"
    method="post"><BR />
    Sorted by:  
    <select name="Orderby" size="1">
    <option value="CEEnum">CEE num</option>
    <option value="Plot">plot No</option>
    </select>
    <br />
    <br />
    Output Format:
    <input type="radio" name="outputFormat" value="HTML"
    checked="checked" />
    HTML  
    <input type="radio" name="outputFormat" value="PDF" />
    PDF  
    <input type="radio" name="outputFormat" value="CSV" />
    Download/Open Excel Spreadsheet <BR />
    <br />
    <input name="Submit" type="Submit" value="Generate Report"
    />
    <BR />
    <BR />
    <BR />
    </form>
    </div>
    </body>
    </html>
    <!--------- act_lop.cfm the action page. Html and pdf is
    working ok but the problem is the excel sheet.
    <cfquery name="getlop" datasource="oracdb10">
    select
    tabTee.CEEnum,
    tabTee.Plot,
    FROM
    tabTee
    ORDER BY
    <cfswitch expression="#Form.orderBy#">
    <cfcase value="CEEnum">
    tabTee.CEEnum
    </cfcase>
    <cfcase value="Plot">
    tabTee.Plot
    </cfcase>
    </cfswitch>
    </cfquery>
    <!---html report--->
    <cfswitch expression="#Form.outputFormat#">
    <cfcase value="HTML,PDF">
    <cfsavecontent variable="htmlData">
    <!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>lop</title>
    </head>
    <style type="text/css">
    td{
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    th{
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight:bold;
    background-color:#FFFF99;
    h2{
    font-family:Arial, Helvetica, sans-serif;
    font-size:14px;
    h3{
    font-family:Arial, Helvetica, sans-serif;
    font-size:15px;
    </style>
    <body>
    <cfoutput>
    <table border="0" cellpadding="3" cellspacing="0">
    <tr>
    <td align="center">
    <h3>lop</h3><br><br></td>
    </tr>
    <tr>
    <td align="center">
    </h2>Your report returned #getlop.RecordCount#
    records</h2></td>
    </tr>
    <tr>
    <td>
    <table border="2" cellpadding="2" cellspacing="0">
    <tr>
    <th>Record Number</th>
    <th width="120">CEE num</th>
    <TH>plot No</TH>
    </tr>
    <cfloop query="getlop">
    <tr bgcolor="<cfif currentrow mod
    2>GHOSTWHITE<cfelse>WHITE</cfif>">
    <td>#CurrentRow#</td>
    <Td>#CEEnum#</td>
    <td>#Plot#</td>
    </tr>
    </cfloop>
    </table>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>
    </cfoutput>
    </cfsavecontent>
    <cfswitch expression="#Form.outputFormat#">
    <cfcase value="HTML">
    <cfoutput>
    #htmldata#
    </cfoutput>
    </cfcase>
    <cfcase value="PDF">
    PDF
    <cfdocument format="pdf">
    <cfoutput>
    #htmldata#
    </cfoutput>
    </cfdocument>
    </cfcase>
    </cfswitch>
    </cfcase>
    <cfcase value="CSV">
    <CFHEADER NAME="Content-Disposition" VALUE="attachment;
    filename=lop.csv">
    <cfcontent type="application/msexcel">"Cee Num","plot
    No"
    <cfoutput query="getlop"> #ltrim(CeeNum)#, #PLOT#
    </cfoutput>
    <cfabort>
    </cfcase>
    </cfswitch>
    <!-----------here is the las page
    ------------------------csv---------------------------->
    <cfquery name="getlop" datasource="oracdb10">
    select
    tabTee.CEEnum,
    tabTee.Plot,
    FROM
    tabTee
    ORDER BY
    tabTee.CEEnum
    </cfquery>
    <CFHEADER NAME="Content-Disposition" VALUE="attachment;
    filename=lop.csv">
    <cfcontent type="application/msexcel">"CEE num","plot
    No"
    <cfoutput query="getlop">#CEEnum#,#Plot#
    </cfoutput>

    CSV interpreted format expects a carriage return/line feed at
    the end of the row. Try
    <cfcontent type="application/msexcel">
    "CEE num","plot
    No"<cfoutput>#chr(13)&chr(10)#</cfoutput>
    <cfoutput
    query="getlop">#CEEnum#,#Plot##chr(13)&chr(10)#
    </cfoutput>
    HTH,

  • Photos Not Showing up on .mac Website

    I'm having trouble with my .mac website. Any album that was originally created using the last version of iWeb...the photos do not show up. You can go to our website here: http://www.bastianwebsite.com
    Fall 2007 was the first album that was created using iWeb 08. All other albums prior to that one the photos do not show up. When I open up iWeb the photos are in there. They just do not seem to load or at least they are not viewable via my website. Any help would be great appreciated.
    Thanks,
    Tom

    Hi Tom,
    First I'd like to tell you that you might think of reducing the number of photos showing per page as it makes the page load extremely slow if there are too many photos per page. 30 photos per page would be great and iWeb automatically creates 'sub pages'.
    Second you might think of making 'Groups' to avoid the menu occupying half of the screen. Thus making having a "B'days" page and on that page have normal text links to the different B'days and a page called "Weddings" and have normal text links to the different weddings... The pages linked from these group-pages (thus particular weddings and B'days) wouldn't show up in the main menu (Inspector, Page tab, uncheck include page in navigation menu) result: the size of the menu is reduced and it does look better.
    That said you might try to make a "publish all" in iWeb (File=>Publish all) instead of a simple publish to get the photos appearing on the web. I hope that helps. It may take a while seen the amount of pictures you have on the site...
    (I know 'first' and 'second' were not required... But I thought they might be helpful...)
    Regards,
    Cédric

  • Why are my css not showing up on my website???

    I am new to Dreamweaver cs6 and using it for a school research project. I have made some css and know how to make them but for some reason they are not showing up when I load my website online. Please help!! Also I am not sure how to create links in my pages to connect to other pages on my site.
    http://www-personal.umich.edu/~borowjil/researchproject.html

    Well it had to get put on the server somehow otherwise your URL would not have worked.  How did you save/move the file so that it would be visible to us?  Do that for the CSS.  If you need to set this up, first ask your teacher because they should be able to help you put the files to the server.  This requires login credentials which no one here would have.  You can reference David's tutorial for where to go to set this up:
    http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt1.html

  • IPad not showing all images on websites

    I've been having problems with the iPad not showing all the images on websites. It tends to do it on forums with threads that are picture heavy. It will show the first few, then the rest will Be replaced with a blue icon with a question mark in it. Is there any way to fix this?

    Yes it is.
    http://micechat.com/forums/blogs/weekend-update/1532-wizarding-world%3B-toy-stor y-3%3B-main-street-disneyland-hong-kong%3B-classic-revolution.html
    Safari is unable to load any more images, works fine on the desktop, but not on the iPad.

  • Internet Explorer does not show photo's on website

    I made a website with iWeb. It looks fine on Safari and Mozilla Firefox but Internet Explorer does not show any of the photo's I have put on. Any solutions out there? Thanks in advance.

    usually this isn't relevant to the Mac side of things, but on the PC side of things do you have McAfee Privacy Service installed on the PC? if so, try disabling that and having another look in IE 6. can you see the buttons now?
    on the Mac side of things ... do you have java/javascript enabled?

  • An swf file does not show up in the website even though you can see it in preview and publish

    I created a swf file from a mov file in Adobe Encoder. Thge movie shows up in Muse in both the preview and publish mode.
    Does not show up in the webstie. The html file is in the assets foder and the swf file is in the image folder and the space is blank.
    When i encoded the .mov file I saved it as FLV. Web 1920 x 1080, 16 x 9 5.4 Mbps is the setting for Flash Web Video when i encoded the file.

    To see all the History and Cookie settings, select:
    * Tools > Options > Privacy > History: Firefox will: "Use custom settings for history"
    * Tools > Options > Privacy > History: [X] "Remember download history"

  • Adobe Muse does not show motion scroll tab

    Hello,
    I installed trial version of Adobe muse (latest version). I click on "effect" link on top. But I can only see 3 option Shadow, Bevel, Glow. 4th option "Motion scroll" is missing. Can some tell me what's wrong with it? I tried to re-install it around 5 times, but it is still same. Please help me.

    Scroll effect is same "Scroll motion" just renamed & added some more features. It helps to animate things across website.
    If you are looking for parallax effect in a particular box, for example: Adobe Muse CC Parallax Scrolling Tutorial | Scrolling Image Masks - YouTube
    You have to find scroll tab in "fill", or you can go through with example.

  • Network Name not showing up (scrolling) in Airport Menu during launch

    I know this is extremely trivial. I am having no problems connecting using AirPort Extreme Base Station and the AirPort Utility. However, sometimes when I connect via Airport I can see the network name scroll in the menu bar as the Signal Strength icon moves to the left. Yet, at other times, the network name is never shown in the menu bar. What causes this inconsistency??
    Thanks for any input.

    i assume your airport extreme base station (AEBS) is you main router and you want the airport express (AX) join the network provided by the AEBS.
    you could try this:
    unplug and re-plug the airport express (AX), then click on the airport icon in your menu bar. you should see something like "Apple network bj1234567" or similar (it may take a little while for it to show up). in order to set up the express, you will have to temporarily join its network ! you will get a message asking +do you really want to switch networks ?+ and you do want to do that.
    launch airport utility (AU). you should see the AX on the left. click on the icon of the AX once to highlight it and click continue. follow onscreen instructions and, when prompted, choose to +join an existing network+ and enter the required information for your network.
    any help ?

  • Silverlight app does not show up in "manage website settings" list in security tab in safari prefences even on admin account.

    As title says, the silverlight app doesn't show up in the "manage website settings".
    Account is admin.

    As title says, the silverlight app doesn't show up in the "manage website settings".
    Account is admin.

  • I have an active adsense account but ads do not show up on my website

    The content seems to be empty. I am not sure how to fix this. I have had the adsense account since 2008 and nver had a problem before. thanks!

    I have the same problem. I like Roddy's reply - "
    The adsense widget doesn't work now that MobileMe has shut down.
    You need to go to Google, get the code and paste it into an iWeb Snippet."
    However, when I go to google and follow their steps <https://support.google.com/adsense/answer/181956?hl=en&ref_topic=28897>
    The Code I get when I click on "Get and copy the Ad Code" doesn't work right.  Here is what I get  pasted in, and when I go to insert html the resulting space is enlarged enormously - Please help!
    <div class="com-apple-iweb-widget-googleads" id="widget1" style="background-color: #d2e3ec; height: 60px; left: 17px; opacity: 1.00; position: absolute; top: 559px; width: 468px; z-index: 1; "></div>
              <div class="com-apple-iweb-widget-googleads" id="widget2" style="background-color: #d2e3ec; height: 90px; left: 7px; opacity: 1.00; position: absolute; top: 15px; width: 120px; z-index: 1; "></div>
    What is the correct code to replace the Google Adsense Widget which USED to work beautifully? I want to stay with the "live ad" sizes already on my webpage but which are now blank on publication.
    I apologize if I am asking stupid questions, but I really can't figure this out. Can you give me step by step? and IS that the correct code?

  • Many buttons do not show up on all websites

    Navigating around pages is almost impossible, because shopping cart buttons, submit buttons, etc., do not appear in my display. I have my control panel internet options as medium security and don't want to make it lower, but I am pretty sure this doesn't have anything to do with the problem anyway.
    On facebook, for example, I can't see any of the buttons for notifications, messages, like or comment.

    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Windows Accessibility settings.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • The site identiy button is not showing up on any websites

    I recently uploaded Firefox 4. When I go to websites the site identity button isn't there. It would be a nice feature to have.

    This is what works for me:
    - On your iPad, try to switch your wifi on/off, 4 times (crazy, helps sometimes)
    - On your ATV2, go to network settings, tcp/ip, change your ip last two digits to 20 and above. (helps every time)

Maybe you are looking for

  • Vaults No Longer Show Up in Aperture

    I opened Aperture today and my two rotating backup vaults (on two external HDs) do not show up in the "Show Vaults" pane. Each of these HD Vaults is almost 2TB of Aperture files, so I could wipe the drives and do a fresh backup, but that would probab

  • Mirroring Toggle missing

    I have been trying to mirror my Mac Book Pro to my Apple TV via I tunes. However no Mirroring toggle appears on the Airplay button. I have checked and the latest software is in place on both.

  • Help on item state please?

    I am relatively new to APEX and am struggling to get to grips with the initialisation of variables from screen to screen and probably need to understand the concept of the session state of these variables more. Would anybody be kind enough to point m

  • Contribute & the webdesigner's clients

    Hi here is my question , i am a web designer, i am creating a website "Aqua" for my client "Bob" in Dreamweaver, I create editable regions , templates etc... in Contribute i create a Bob user password, a contribute key access etc... to allow Bob to e

  • TS3276 Help

    My mail box is full and I'm not receiving any new emails