How to Preset the Web Page resolution

Hello to all. I tried searching but came with nothing. I
wanted to know if there is a way in preseting the page to a
resolution, say 1024x768
Or is it better having the width set at 100% and go from
there?
thank you for the help

Hi,
>>
I wanted to know if there is a way in preseting the page to a
resolution, say 1024x768
>>
you could put all the page contents in a table that´s
tagged with a fixed width of 1024
>>
Or is it better having the width set at 100% and go from
there?
>>
I´d certainly recommend this "fluid" approach, because
you can´t foresee if the visitor has a smaller screen
resolution, or if part of the browser´s "inner screen" has
been reduced by means of a sidebar.

Similar Messages

  • How to change the web page title of a web dynpro app?

    Hello,
    I would like to change the HTML page title of a web dynpro application without renaming the application component itself - but how?
    Thanks for your comments!

    Hi M Walter,
    Assuming you are using Web Dynpro Java, you can change the title of the Web Page for Web Dynpro App by adding the title to the main window of your app.
    Go to Windows and open the properties. There will be a field called 'title'. Give the title you want, save, build, DC->Build and deploy.
    The title you gave to this Window will be displayed as the title of your Web page.
    Regards,
    Ajay

  • How to save the web page content? help!

    i'm doing 'saveAs' button in order to save all the web content. I'm using ole automation. Can help me to check how to modify my code in order to run 'saveAs' function'? I'm stucked at the code shown below as i would like to insert the web content instead of "tre" tat i assigned. how to do that? thanks
    // Enter text
    dispIDs = objSelection.getIDsOfNames(new String[] {"TypeText"});
    System.out.print(dispIDs.toString());
    objSelection.invoke(dispIDs[0], new Variant[] {new Variant("tre")});
    the save method is as shown below:
    public void save(){
              String fileName = "c:\\test\\tmpdoc01.doc";
              OleClientSite site = new OleClientSite(webFrame, SWT.NONE, "Word.Application");
              OleAutomation objApplication = new OleAutomation(site);
    // Get Documents object
    int[] dispIDs = objApplication.getIDsOfNames(new String[] {"Documents"});
    Variant varResult = objApplication.getProperty(dispIDs[0]);
    if (varResult != null && varResult.getType() != OLE.VT_EMPTY) {
    OleAutomation objDocuments = varResult.getAutomation();
    varResult.dispose();
    // Add Document file
    dispIDs = objDocuments.getIDsOfNames(new String[] {"Add"});
    varResult = objDocuments.invoke(dispIDs[0]);
    if (varResult != null && varResult.getType()!= OLE.VT_EMPTY) {
    OleAutomation objDocument = varResult.getAutomation();
    varResult.dispose();
    // Get Selection object
    dispIDs = objApplication.getIDsOfNames(new String[] {"Selection"});
    varResult = objApplication.getProperty(dispIDs[0]);
    if (varResult != null && varResult.getType() != OLE.VT_EMPTY) {
    OleAutomation objSelection = varResult.getAutomation();
    varResult.dispose();
    // Enter text
    dispIDs = objSelection.getIDsOfNames(new String[] {"TypeText"});
    System.out.print(dispIDs.toString());
    objSelection.invoke(dispIDs[0], new Variant[] {new Variant("tre")});
    objSelection.dispose();
    // Save Document file
    dispIDs = objDocument.getIDsOfNames(new String[] {"SaveAs"});
    objDocument.invoke(dispIDs[0], new Variant[] {new Variant(fileName)});
    // Close Document file
    dispIDs = objDocument.getIDsOfNames(new String[] {"Close"});
    objDocument.invoke(dispIDs[0]);
    objDocument.dispose();
    objDocuments.dispose();
    // Quit Application
    dispIDs = objApplication.getIDsOfNames(new String[] {"Quit"});
    objApplication.invoke(dispIDs[0]);
    objApplication.dispose();
         }

    import java.io.*;
    import java.net.*;
    class SiteSaver {
         public static void main(String[] argv) throws Exception {
              if( argv.length != 2 ) usage();
              BufferedWriter bw = new BufferedWriter(new FileWriter(argv[0]));
              URL url = new URL(argv[1]);
              BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream()));
              String input;
              while( (input = br.readLine()) != null ) {
                   bw.write(input);
              br.close();
              bw.close();
              System.out.println("Contents of \"" + argv[1] + "\" have been saved to the file \"" + argv[0] + "\"");
         private static void usage() {
              System.out.println("usage: java SiteSaver [filename] [url]");
              System.exit(1);
    }

  • How to resize the web page, accidently minimised the webpage, unable to resize it.

    while surfing using my laptop, i have re sized the appearance(font size) of my gmail and facebook pages. Other web pages are ok. I'm now unable to re size it back and unable to use the site as the font size is too small and not readable.
    Appreciate any suggestion.

    Try to reset the zoom level.
    View menu > Zoom > Reset
    If you have the orange Firefox button, tap the Alt key to display the classic menu bar to get to the View menu.
    Any luck?

  • How to codify the web page

    I have some troubles when i publish the webpage because i see a lot of symbols that didn't appear when i maked de webpage, so i have codiffy the webpage with the ISO 8859-1, and i can't find the way to do that, is it possible?
    Thanks

    It would help a lot of you would provide the url.
    To change the encoding of the page would be tedious and would also get erased every time you republished.
    You may need to change the setting of your ftp program or add an .htaccess file to your space on your server. See this note:
    http://homepage.mac.com/thgewecke/iwebchars.html

  • How to call the url page inside the procedure.

    Hi,
    I am not exposure in plsql.
    I am getting some problem in utl_http link.
    I create a one procedure. The procedure was successfully compiled. But the url page doesnt open..
    I attached the procedure,
    create or replace procedure p(mob number)
    IS
    l_page long;
    l_url varchar2(25000 char) ;
    begin
    null;
    l_page := utl_http.request( 'http://www.yahoo.com');
    end;
    please tell me the solution for this problem..
    I am waiting for ur response.
    Thanks,
    Sasi.

    this is a duplicate thread:
    how to open the web page in pl/sql
    the OP doesn't seem to understand the difference between a web browser and a programming language....... I can't say I've ever had to explain the difference before...
    let's just say.... butterflies are not in any way similar to electric shavers..

  • Open the web page

    Hi
    I am not exept in plsql..
    How to open the web page in oracle pl/sql with procedure.
    regards,
    sasi

    Hi,
    There is a dedicated forum for PL/SQL questions, please post your question in that forum for a better/faster response.
    SQL and PL/SQL
    PL/SQL
    Thanks,
    Hussein

  • My printer will not print the web pages using firefox...how do I set it up to print a web page?

    I have an hp photosmart c4180 printer and it will not print the web pages in firefox...how exactly do I set up FF so I can print web pages? I will need step by step instruction also on exactly where to go to set it up.

    Open System Preferences (gear icon on the dock), then open Print & Scan
    Click the + button at the bottom of the printer list
    If your printer appears....not all printers are supported....click on the name to highlight it
    Click the Add button to install the printer at the AirPort Express location
    Try to print. You must choose the correct printer at the AirPort Express location since the printer is "installed" at other locations on your network.
    If you open Print & Scan again, and select the printer at the AirPort Express, there is an option to make the printer the "default" location, so you do not have to choose which location to select when you want to print.

  • How to delete the error message in the Web page Message Monitoring

    Hi All:
    I'd like to ask a question.If there is error message in the T-code sxmb_moni->Monitor for Processed XML Messages,I can cancel the error message manually and archive the message. After that,I can delete the message from "Monitor for Processed XML Messages".
    But after those operation,I find in the web page " Message Monitoring", there are still messages in the "Messages from Component Integration Server and/or Adapter Engine".
    How can I delete those message both successful and error.
    Thanks All
    Elliott

    Hi Elliot,
    SXMB_ADM
    Integration Engine Configuration
    Specific Configuration
    Category: DELETION
    Parameters: PERSIST_DURATION, PERSIST_DURATION_ERROR
    Subparameters: SYNC, ASYNC
    Change "Current Value".
    and execute your delete job again!
    Regards,
    Udo

  • How to get the Empty page in Webi report

    Hi,
    I have to insert the charts in the report but i don't have the space to insert the charts in same page so i need one more page how to get the blank page in report
    thanks,

    turn your report from Page Layout to Draft Mode. Than you will be able to insert chart in it.
    You can view Web Intelligence reports in different modes depending on how you want to work with data and how you want the data to appear.
    1. In Web Intelligence Interactive, select the report tab of the report you want to view.
    2. Click the arrow next to the View button on the main toolbar above the report.
    3. Select the viewing mode.
    4. In the Java Report Panel or Web Intelligence Rich Client, use Switch Page/Quick Display on the Reporting toolbar to alternate between Page mode and Quick Display mode.
    Edited by: srrachna on Apr 22, 2011 2:25 PM

  • HOW CAN I IMPORT TEXT FROM MICROSOFT WORD TO THE WEB PAGE?

    HOW CAN I IMPORT TEXT FROM MICROSOFT WORD TO THE WEB PAGE?

    Another method is tosave your Word document as an a web page.  Then open the htm file, copy the text and paste into an HTML snippet on your web page.  Resize to show all the document and publish. It will retain the style, font and alignment of the original Word document.
    OT

  • How can I save the web page by using the Page Title as the file name ?

    When i use Internet Explorer ,I can save the web page by using Page Title as the file name(as default no need to adjust anything). But when i use Firefox ,It can not use the Page Title to save as the file name. How can I do that like in Internet Explorer?

    See:
    *File Title: https://addons.mozilla.org/firefox/addon/834
    *Title Save: https://addons.mozilla.org/firefox/addon/712

  • Whenever I play anything on Windows Media Player Classic, the middle mouse button does not work as a vertical scroll in firefox, but instead shows a horizontal scroll that does not scroll the web pages. How can I fix this problem?

    Hi
    I have a windows 7 and whenever I play anything on Windows Media Player Classic, the middle mouse button does not work as a vertical scroll in firefox, but instead shows a horizontal scroll that does not scroll the web pages. How can I fix this problem?
    I hope that was clear.
    Thnx

    Hello kmanthie,
    I just sent you a private message. If you are not sure how to check your forum messages, this post has instructions.
    I worked on behalf of HP.

  • Help!!! How to make quicktime plugin do not display on top of the web page?

    Any one knows how to make quicktime plugin do not display on top of the web page??? I've tried to change the zIndex property using javascript, but it doesn't work.
    Because we have some widgets which are required to be moved to anywhere on the page, we use iframe to implement that, so it can display on top of quicktime plugin, but the plugin flickers sometimes when we do some operation on the widget which is on top of it.
    Anyone can helps me? Thanks in advance!!!
      Windows XP Pro  

    > Can you tell me how to set the script so that the
    lightbox image is
    > displayed
    > on mouseover instead of mouse click.
    Check the docs. Trent is usually very thorough in his
    instructions.
    Hint: I haven't studied it but it probably involves modifying
    one of DW's
    built-in Behaviors.
    Walt
    "ducati1" <[email protected]> wrote in
    message
    news:gkb906$qrd$[email protected]..
    > Wow that DW extension is just what I needed.
    > Thanks..
    > Can you tell me how to set the script so that the
    lightbox image is
    > displayed
    > on mouseover instead of mouse click.
    > I currently have the thumbnails set to insert the ALT
    text into a text box
    > on
    > mouse click.
    >

  • How can I stop those anoying pop-up ad's that pop-up as I move my cursor around the web-page?

    How can I stop those annoying little ad's that pop up as I move my cursor around the web page, seems like anything that is highlighted in green will trigger it? Seems it just started happening with the new version of Firefox.

    hello hamguy, this sounds like a problem possibly caused by adware/malware on your pc. please go to ''firefox > addons > extensions'' & remove any suspicious entries (toolbars, things that you have not installed intentionally, don't know what purpose they serve, etc). also go to the windows control panel / programs and remove all toolbars or potentially unwanted software from there and run a full scan of your system with the security software that you have in place and different other tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] & [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner].
    [[Remove a toolbar that has taken over your Firefox search or home page]]
    [[Troubleshoot Firefox issues caused by malware]]

Maybe you are looking for

  • Query problem with accumulated key figures

    Hi BI Gurus! I have a report problem that I hope you can help me with! In my report I have 2 key figures. One for accumulated revenue previous year (KF1) and one for accumulated revenue current year (KF2). Both key figures should be presented in a gr

  • Problem with ECM 10G working with Apache 2.2.22

    Hello all and thanks for your help. I'm facing an issue when trying to use the Apache to display my UCM URL. I get this error whenever I try to user Apache: [oracle@ucm-2 bin]$ ./apachectl start httpd: Syntax error on line 465 of /app/apache2/conf/ht

  • Photoshop CS3 Extended wont boot in Tiger

    Hi, I am helping my friend to sort out some problem. Would appreciate all your expertise. At present, my friend uses a iMac and is ready to install a Mac OS X Photoshop CS3 Extended Academic Edition. However, as I load the DVD into the iMac, it just

  • Unlock multiple folders within other folders

    I have several folders within other folders that when I transferred them from my PC to Mac, became locked for some reason. These are folders that contain music files. (mp3,.wma, etc) My question is rather than going into each folder and unlocking the

  • Office jet Pro 8600 Printing 8 1/2 x 5 1/2 Cards won't print borderless

    Using windows 7 operating systems have tried using many programs to print from.  Always choose borderless. The best we have done is elementate the border on 2 sides.  I don't know what else to do.  Anyone have any ideas? These are invitations for a p