Can an already made page be changed to fill web browser's?

I’ve read how to create a page as elastic or liquid to fill browsers however people have them set, but is there a way to take an existing webpage/website and change it to elastic or 100% so they fill in the browser’s? When I click on page properties I don’t see anything in CSS Style to change.
Thank you,
Tony

Hi
The template you purchased was built in frontpage as indicated by the following two lines in the head content -
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
PZ

Similar Messages

  • Opening a specific page of a PDF through web browser not working with IE5.5

    Hi,
    I need an urgent help to reslove the problem below.
    Using Netscape 4.7, When I am trying to open a specific page of
    a PDF file through the web browser using the command below.
    web.show_document('http://oraweb/abc.pdf#page=3','_self');
    This opens the page 3 and then when I give subsequent calls to
    this command with different page nunbers, it opens the related
    pages correctly.
    But when using IE 5.5, the page gets displayed correctly for
    only the firt time. Any calls to the command does not change the
    page at all.
    Could anybody help me to resolve this problem ASAP?
    Thanks
    Preji

    Hello,
    I think this is a problem of IE5.5 with PDF-Files.
    You can find more information at acrobat web site
    (perhaps there is a patch)
    There is a setting in the reader where you can say that
    the reader should start in the web-browser. Turn it off -
    when IE starts downloading a pdf-file you can choose
    acrobat reader for the first time.

  • AdobeAcrobat/Reader that is running can not be used to view PDF Files in Web Browser...what do I need to do to fix this..

    I just got Windows 7 and have been having problems since loading it. Most of my drivers only go to Vista and don't recognize 7.
    I have trying to download some manuals from their website
    and keep getting this message; Adobe Acrobat/reader that is running can not be used to view PDF files in Web Browser.

    Could I suggest a workaround for PDFs until a solution is posted? Open them directly in the Adobe application rather than in a browser tab.
    In your Adobe application(s), go to:
    Edit > Preferences > Internet
    Then uncheck "Display PDF in browser"
    (There are very few sites where having PDF integrated is really beneficial.)

  • Adobe Acrobat/Reader can not be used to view PDF's in Web browser.

    Does any one came accross the following message trying to view PDF's in web browser? "Adobe Acrobat/Reader that is running can not be used to view PDF documents in Web browser. Please exit the Acrobat?Reader application and try again". Thanks for your help! Barbara

    http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html

  • How do you use adobe acrobat reader that can be used/view as a PDF in a web browser

    I get a message that say: this abode acrobat reader that is running can not be used to view PDF files in a
    Web Browser.

    Hello there,
    This forum is for questions about Acrobat.com, and we cannot offer assistance for questions about other Adobe products and services. If you are having trouble with Adobe Reader, I recommend looking at the Reader forum:
    http://forums.adobe.com/community/adobe_reader_forums/adobe_reader
    Here is a search that I did for the error message you reported; it looks like there may be some helpful threads already posted there:
    http://forums.adobe.com/search.jspa?q=view+PDF+files+in+a+web+browser&resultTypes=MESSAGE& dateRange=all&communityID=3414&username=&numResults=15&rankBy=10001
    Best of luck!
    Kind regards,
    Rebecca

  • SRM 4.0-- Blank Page displayed without Errors  through Web Browser

    Hi All,
    Can any one help me in the following ....
    We are trying to give access through the Web Browser instead of Sap GUI.
    we have started all the services through SICF.
    when we tried test service through WEB GUI it is showing  a blank page.
    It is not giving any errors on the page.
    there is no problem in the URL..
    Can any one help me by giving option of errors and where to check.....
    Bye
    Suresh

    Hi
    Read this ->
    <u>The entries in table TWPURLSVR should be as follows:
    e.g.</u>
    LOGSYS : MRDCLNT100
    WEB SERVER : SAPDEV14.XEROX.COM:8001
    WEB PROTCL:HTTP
    WIN SERVER:SAPDEV14.XEROX.COM:8001
    WIN PROTCL:HTTP
    BSP SERVER:SAPDEV14.XEROX.COM:8001
    BSP PROTCL:HTTP
    <u>Also, refer to OSS Note 790727 describes the details for publishing all the services</u>
    Refer
    <b>why can I not find Service BBPGLOBAL in TA SICF?
    for details.
    Regards
    - Atul

  • I can't download any software using the built in web browser. Any ideas?

    Hey hey! Thanks in advance for everyone's help.
    I just got a new Treo 755p for Verizon. I can't seem to download any software using the built in web browser. When I initiate the download it sits on the download screen and does nothing. I've tried several sources of software all resulting in the same thing.
    Could it be settings on the Treo itself? Not sure! Any ideas would be greatly appreciated.
    Sincerely,
    Minnesota Mike
    Post relates to: Treo 755p (Verizon)

    Hi, and welcome to the Palm Community Forums.
    Where are you trying to download the applications from, and what file format are they?
    Do you have an expansion card installed?
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • Can't get the page to change

    I don't really know much about actionscript, but I want the login page to show up when the movie start, to go away when someone logs in and to come back if someone logs out.  I also want the pages to appear dynamically and not use goToAndStop or .visible, but I can't seem to get the login button working. If I remove the document class from the login pags and all references to it the button works, but it doesn't work when the document class and things are there.
    so here is the code.
    this is the document class .as code
    package {
        import flash.display.MovieClip;
        import flash.events.*;
        import flash.net.URLRequest;
        import flash.net.URLVariables;
        import flash.net.URLLoader;
        import flash.net.URLLoaderDataFormat;
        import flash.display.Loader;
        public class loginPage extends MovieClip {
            public var noPass:Number=-1;
            //public var subBtnClick:Number=-1;
            public function getPass(event:Event):void {
                if (noPass==0) {
                    var passRequest:URLRequest=new URLRequest("PasswordPageTwo.swf");
                    var passLoader:Loader = new Loader();
                    passLoader.load(passRequest);
                    addChild(passLoader);
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("back to the pass page");
                } else if (noPass==1) {
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    var navRequest:URLRequest=new URLRequest("Connect/ILNav.swf");
                    var navLoader:Loader = new Loader();
                    navLoader.load(navRequest);
                    addChild(navLoader);
                    removeChild(passLoader);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("here is the nav page");
                } else if (noPass==3) {
                    var defaultRequest:URLRequest=new URLRequest("PasswordPageTwo.swf");
                    var defaultLoader:Loader = new Loader();
                    defaultLoader.load(defaultRequest);
                    addChild(defaultLoader);
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("default pass page");
          public function listenPass(event:Event):void{
                addEventListener(Event.ENTER_FRAME, zeroPass) 
                removeEventListener(Event.ENTER_FRAME, listenPass) 
            public var reLoginName:String; 
            public var reLoginPassword:String; 
            public var myTheme:Number; 
            public var myHelper:Number; 
            public var myFont:String; 
            public var myBackground:String; 
            public var userSet:Number; 
    This is the first layer movie's code. This works in the begining to load the login layer.
    function zeroPass(event:Event):void {
        if(noPass>=0){
        addEventListener(Event.ENTER_FRAME, getPass);
        removeEventListener(Event.ENTER_FRAME, zeroPass);
        } else {
            noPass=3;
        addEventListener(Event.ENTER_FRAME, getPass);
        removeEventListener(Event.ENTER_FRAME, zeroPass);
    addEventListener(Event.ENTER_FRAME, zeroPass);
    This is the login code.  I just have the testing code done so when it clicks it is meant to log off. This is where the button does not work.
    function myLogin(event:MouseEvent):void {
        trace("submit works");
        noPass=0;
        addEventListener(Event.ENTER_FRAME, listenPass);
        submit_btn.removeEventListener(MouseEvent.CLICK, myLogin);
    submit_btn.addEventListener(MouseEvent.CLICK, myLogin);
    I also have the navigation page that I cannot test because the login page doesn't work but it is the same code so it I think it is safe to say it does not work either.
    function myLogout(event:MouseEvent):void {
        noPass=1;
        trace("logout works");
        addEventListener(Event.ENTER_FRAME, listenPass);
        Logout_btn.removeEventListener(MouseEvent.CLICK, myLogout);
    Logout_btn.addEventListener(MouseEvent.CLICK, myLogout);
    like I have said I am new to actionscritp so I most likely have it all wrong.

    IF you are using 2-sided printing, in the print dialog you will have a selection for long side binding OR short side binding. Whichever setting you have set, switch to the other one.
    Walt

  • Can I use Find & Replace to change the fills and strokes of tables?

    I'm working on a catalog that has a fair amount of tables, that all have the same color scheme.  I need to change all of these tables to a new color scheme, and I'd much rather find a way to do it with one shot.  The tables do not have styles applied to them, so it's not a matter of adjusting the style definitions.
    I know you can do a Find & Replace for text or objects in a specific color. Is there a way to do the same for table cells?  I've tried but haven't had luck getting it to work.
    Thanks!
    -Sean

    Congratulations are in place -- changing parameter names in the right places is one thing, finding out what parts safely can be copied is step 2 in my book "how to become a successful scripter in 10 easy steps"
    You cannot select more than one table in Table mode, but what you can do is select them together with its surrounding text -- just keep on dragging that mouse until you've covered them all. The InDesign Selection is a multi-purpose object (see the way the script has to find out "what is selected"), and one of the things it keeps track of is how many and which tables are "inside" the selection. Then run this slightly amended script:
    a = app.selection[0];if (a.tables.length == 0)
    alert ("You must be kidding; not a single table inside your selection!");
    exit(0);
    for (b=0; b<app.selection[0].tables.length; b++)
    d = app.selection[0].tables[b]; // shortcut
    for (c=0; c<d.cells.length; c++)
      if (d.cells[c].fillColor == app.activeDocument.swatches.item("Bloo"))
       d.cells[c].fillColor = app.activeDocument.swatches.item("Redd");
      // .. Insert more colors here ..
    Now the script doesn't have to check anymore in which part of the table you clicked; it only has to iterate over the ones in your selection, and those are "immediately" accessible through the indexes (the square bracketed variables). And the "shortcut" is so I don't have to type "app.selection[0].tables[b].cells[c].fillColor" every time. (And the script runs marginally faster as well, although it's probably still almost immediate.)

  • I cannot change the home web browser page

    I only have yahoo on this machine yet Inbox continually comes up as the home browser.

    Make sure it says "'''Show My Home Page'''" in the first dropdown menu at the top before you try to change it.
    See also: [[How to set the home page]]

  • When I open a new tap how can I my home page come up instead of "Tabbed Browsing"? I am running Firefox 5

    I am running Firefox 5 and also running Vista

    The NewTabURL extension can be used to specify what opens in a new tab - https://addons.mozilla.org/firefox/addon/newtaburl/

  • How can I delte all stored emails from my firefox web-browser

    I have some of my friends who use my laptop and as I'm trying to sign in to my facebook account, I found their emails. This is really piss me off, I tried to search for answer of how to delete stored emails and I couldn't find an answer.
    I appreciate you help. I deleted the whole browser and re-install it but nothing has been changed.

    You may have a malware problem if you get unrelated pop-ups opening or are redirected to unrequested websites.
    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Captivate 8 - can't zoom in/out to view content in web browser

    I'm running Captivate 8 on PC Win7-64bit. After publishing a simulation module (Flash SWF) to HTML for viewing in different browsers (Chrome, IE, Firefox), we can't zoom in or out of module like we can in Captivate 5. You'd typically can press CTLT +/- to zoom/out to resize text or graphics for better viewing. I can rescale the browser window but not the content inside. What's the resolution to this issue? Anyone out there?
    thanks,
    Robert

    Hi Robert,
    Same thing happened to me...I'm assuming this is because you didn't create your project as a "Responsive" project.  If you need to convert an old project, you have to go to File > New Project > Responsive Project and then open your old project and COPY/PASTE the slides into the responsive project.  Obviously, your shapes / objects might rearrange but they are usually easy to adjust. However, if you have a quiz attached I believe you will have to re-add from scratch (that was my experience anyways).  Also, don't forget to activate your "Mobile Gestures".  All of this will allow you to zoom as much as you want. The drawback of using the Responsive project is that it ONLY publishes in HTML5 (Not SWF, MP4, etc.)  Hope this helps!
    1) 

  • After I upgraded to latest version of FF (16 on windows xp), the browser doesn't load css menu of hwupgrade page (hwupgrade.it).the other web browser works fine

    after I updated to the latest version of the product, some sites have been slow in rendering, but the biggest problem is the not display of styles in some sites, such as in particular hwupgrade.it.
    the menu is not recognized.
    the console does not show any serious problem.
    the problem does't occur with previous versions or with other browsers

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    More info here - [[Websites don't load - troubleshoot and fix error messages]]
    Did this fix your problems? Please report back to us!

  • Can i upload one page at a time

    I have a very complex website with tons of pages that were designed using a different software.  I have now decided to switch to Adobe Muse. I need to change some pages on my website without having to recreate the whole website in Muse.  Can I upload individual pages to replace my existing web pages so that I can gradually update all of my web pages using Muse instead of having to complete the whole website redesign in Muse before uploading it?

    You can upload single pages with Muse but that wouldn't help with what you want... if the site has been made for you then imo your best bet is to use Dreamweaver now.

Maybe you are looking for

  • SQL Error while running a report

    Hi Experts, I am getting an error like below while running a report for particular sales Organization and Company code combination *SQL Error: 83-* *SQL0083C A memory allocation error has occured* *Errors occured during parellel processing of query 3

  • Creative Cloud doesn't 'know' I have a full susbscription

    Hi I have a subscrition to Creative Cloud, however, even tho I'm signed in the menu bar at the top still asks me to 'upgrade' and the Apps section invites me to "try" the apps rather than download them. i have tried everything I can think of to coax

  • Get Modulus and exp from public key

    Hi friends, I'm extracting the public key from the X.509 certificate .Is there any way i can extract modulus and exponent from the public key. i'm using bouncy castle api . Any suggestions are greatly appreciated. //Generate Certificate //Extract pub

  • Mail Header meanings

    Someone was using my computer recently and sent an email from my email address without my consent. Can anyone tell me what the little arrow means in the first column of the sent folder. It is the column where the blue ball is when an email is marked

  • The support software isnt working on the website !

    omg , can someone please change the link to download the software because i lost my software installation cd & it says if i lost it , i can download it on the website but the links dont work so yeah someone needs to fix it ! okay thank you ! i need y