How to make the page longer

I'm having an issue fitting everything I need into the space provided by the program. Is there any way to make the page longer in order to fit everything I need into it? Thank you in advance.

Taffypro wrote:
What is the best width setting so that my website appears to take up the full screen
Gary ~ Apple's own design award-winning site at apple.com mostly has a width of *980 pixels*. Apple's developer guidelines for the iPhone/iPod touch say: "Safari on iPhone also sets the viewport width to *980 pixels*, the width of most webpages." And: "...if your webpage is less than *980 pixels* wide causing it to scale too small on iPhone..."

Similar Messages

  • When the page will be load how to make the page blank in run time

    Dear
    when i will run the page the fields shoud come with blank Field.
    i want to make it in runtime.
    example- i have one page having employees data. but when i will run that page the data will not come only blank fields should come, after thar i will create.

    duplicate how to make the page blank field in runtime

  • How to make the page expired when user click back

    how to make the page as expired when i click back button on the browser.
    i want a better way.
    actually i have a timer.when it reaches 00.00 then the expired page will be called automaticlly using location.href="expired.jsp" then if the user clicks back it should not show the previous page.this concept is applied with paging concept
    response.setheader is not working ...
    i have redirect when click back using
    <body onunload>....i call another page here.
    but it is not a good way.
    so pls help me to solve this problem
    using session or another good way

    Use this instead.
    Frame.setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);

  • How to make the Page UP and down work on a table control screen?

    Dear all,
    Can some one suggest how to make the table control screen work with Page Up and Page down controls.
    when I press on Page down it works for the first time and after that i need to select the table to make it work the second time. it there a way I can make the index on the screen stay on the table control at all times.
    Regard,
    Vj

    Take this code as a referance:
    Sample code for vertical scrolling in PAI processing will look like this:
    MODULE user_command_XXXX INPUT. (XXXX is screen no.)
      CASE ok_code.
        WHEN 'P--'.
          CLEAR ok_code.
          PERFORM paging USING 'P--'.
        WHEN 'P-'.
          CLEAR ok_code.
          PERFORM paging USING 'P-'.
        WHEN 'P+'.
          CLEAR ok_code.
          PERFORM paging USING 'P+'.
        WHEN 'P++'.
          CLEAR ok_code.
          PERFORM paging USING 'P++'.
    *&      Form  PAGING
    *       Form to do scrolling for screen XXXX
    *      -->CODE   OKCODE value (P--, P-, P+, P++ )
    FORM paging USING code.
      DATA: i TYPE i,
            j TYPE i.
      CASE code.
        WHEN 'P--'. <table control name>-top_line = 1.
        WHEN 'P-'.
          <table control name>-top_line =
                  <table control name>-top_line - line_count.
          IF <table control name>-top_line LE 0.
            <table control name>-top_line = 1.
          ENDIF.
        WHEN 'P+'.
          i = <table control name>-top_line + line_count.
          j = <table control name>-lines - line_count + 1.
          IF j LE 0. j = 1. ENDIF.
          IF i LE j.
            <table control name>-top_line = i.
          ELSE.
            <table control name>-top_line = j.
          ENDIF.
        WHEN 'P++'.
          <table control name>-top_line =
                 <table control name>-lines - line_count + 1.
          IF <table control name>-top_line LE 0.
            <table control name>-top_line = 1.
          ENDIF.
      ENDCASE.
    ENDFORM.                               " PAGING
    Regards,
    Ravi

  • How to make the Pager for table view as non editable?

    Hi,
    I am using an HTMLB pager for my table view .
    It appears as Page '1' of 2 for examle.
    But '1' is dispalyed in an input field.
    How do I make this input field as disabled.
    I just want to use the Vertical and horizontal indicators to traverse through the pages of the table view.
    I do not want the user to enter the page number ..
    Thanks,
    Sachin

    Look at SBSPEXT_XHTMLB sample, pages pager.bsp and pagerX.bsp.
    If you use the external pager, then you can specify a format where a text string will only be displayed without an inputfield for editing.

  • How to make the slider longer?

    Hi,
    I want to add a slider in my code, but the slider is too short to choose the number.
    Could anyone tell me how to make it? Thank you!
    The following is my code.
    slider1.setMin(0);
    slider1.setMax(100);
    slider1.setValue(10);
    slider1.setShowTickLabels(true);
    slider1.setShowTickMarks(true);
    slider1.setMajorTickUnit(10);
    slider1.setMinorTickCount(10);
    slider1.setBlockIncrement(1);
    slider1.setLayoutX(50);
    slider1.setLayoutY(20);

    This seems fine to me. Can you explain more what the problem is you are seeing? If you want the slider to be longer, you can manually size it (set the prefWidth, as in the following example). If that is indeed the problem, then I would suggest you look into one of the layout panes shipped with the platform which will help with making sure it is resized as you would expect.
    import javafx.application.Application;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Slider;
    import javafx.stage.Stage;
    * @author Richard
    public class ShortSlider extends Application {
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            primaryStage.setTitle("Hello World");
            Group root = new Group();
            Scene scene = new Scene(root, 300, 250);
            Slider slider1 = new Slider();
            slider1.setMin(0);
            slider1.setMax(100);
            slider1.setValue(10);
            slider1.setShowTickLabels(true);
            slider1.setShowTickMarks(true);
            slider1.setMajorTickUnit(10);
            slider1.setMinorTickCount(10);
            slider1.setBlockIncrement(1);
            slider1.setLayoutX(50);
            slider1.setLayoutY(20);
            slider1.setPrefWidth(400);
            root.getChildren().add(slider1);
            primaryStage.setScene(scene);
            primaryStage.show();
    }

  • How to make the page blank field in runtime

    Dear
    when i will run the page the fields shoud come with blank Field.
    i want to make it in runtime.
    example- i have one page having employees data. but when i will run that page the data will not come only blank fields should come,

    rakesh,
    af:panelformlayout
    see the naveeth comments.
    You are following a wrong design for your application.
    If there are no rows in the VO instance, show the message as 'There are no rows'.
    What is the use-case that you have - in order to do the same for all the pages in the application.

  • How to make the page disabled or unvisible with specific password ?

    I am student. I need your help in my assignment.
    I have 2 main page called = call problem and call report. The call problem page only can access by operator and call report page only can access by manager with the specific paasword.
    Did any body know how to disabled or invisible the page with the specific password ? Or have other method to do that ?
    Thanks.

    Hello,
    You can create a Authorization Scheme 'operator' and 'manager'.
    And then you attach the 'operator' and 'manager' authorization schemes to the pages 'call problem' and 'call report' respectively.
    Regards,
    G.

  • How to make a page reload

    Hi every body, and thank you for reading my post, here's the question I have
    Does anybody know how can I make a page reload???
    Thank's

    If you mean how to make the page reload when someone pushes a button or clicks an action component such as a hyperlink, then have that component's action method return null. To create the action method for a component, double click the component in the Visual Designer.
    To make the page reload after someone selects from a drop-down or list, or when the user changes the value in an input text field, right-click that component and choose Auto-Submit on Change.
    Chris

  • How can I make a intro page for my website, then after the intro has run make the page automatically change to my we site home screen

    how can I make a intro page for my website, then after the intro has run make the page automatically change to my website's home screen

    You can do this using a meta refresh but the problem is you have to add it to the html file for the page very time you publish changes.
    A better way is to create a splash page and upload it to the server outside of the folder produced by iWeb. Example HERE.
    The meta refresh is added to the head section of the html file...
    <meta http-equiv="refresh" content="32;url=http://www.domain.about.com/Page-Name.html">
    The delay time in seconds is marked in blue and the URL to the redirect page is in red.

  • I have alot of loose photos at home (old) and I would love to make a bunch of iphoto books and make the pages like whole page collages?  How do I get my photos into iphoto in order to do this?  Can I make a DVD at the drugstore and add them to iphoto?

    I have alot of loose photos at home (old) and I would love to make a bunch of iphoto books and make the pages like whole page collages?  How do I get my photos into iphoto in order to do this?  Can I make a DVD at the drugstore and add them to iphoto?

    You can make the collages easily if you have iWork.  Just open a letter sized page in landscape mode and drag the photos onto the page, rotate and postiion as necessary.  Then do a Print ➙ PDF ➙ Save PDF to iPhoto to get a 200 dpi jpeg version of the Pages page into iPhoto.  From there you can add it to your book and use a blank page with the option to have an image as the backbround. 
    If you have a 3rd party image editor that supports layers you can create the collage with it. 
    OT

  • HT203909 Why can't you provide specific instructions here about how to make the USB drive bootable?  The article referenced is not dedicated to Bootcamp--too long, too many options.  How do you make it bootable?

    Why can't you provide specific instructions here in HT203909 (Boot Camp: Creating an ISO image from a Windows installation DVD) about how to make the USB drive bootable?  The article referenced for partitioning the drive is not dedicated to Bootcamp--too long, too many options.  How do you make it bootable?

    If your BC Assistant shows the option to create a USB Installer, it automatically is marked as bootable. There is no need to have manual intervention to make a bootable USB. Once the process is manually modified, it is supported by the person modifying it.
    You have two or three options (depending on your Mac Model).
    1. Create USB... - Use a USB2 flash drive, which is erased and formatted. If your Mac supports ISOs then BCA will prompt for the Media. Any Mac which does not have a built-in Optical drive will support an ISO. There are specific Mac models which support both, DVD and USB based installation.
    2. Download Software from Apple servers...
    3. Install Windows...
    Are any additional instructions really necessary?

  • After clicking on an open tab, how to make the focus automatically go to the body of page?

    After clicking on an open tab, how to make the focus automatically go to the body of page?
    Right now, clicking in an open tab and using arrow keys now moves through the open tabs. I liked the old versions where right after clicking in a tab you could directly go to navigate the page with the arrow keys.
    Is there a something I can change in about:config to change this behavior?
    Thanks in advanced.

    Firefox should still set the focus the the browser area if you click a tab.<br />
    Only with very old browser versions you could set the focus to a tab by clicking a tab.
    This behavior is likely caused by an extension.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • The Header in my home page is truncated. My home page Header is cut off. The header appears in Internet Explorer, but not in Mozilla Firefox 3.6.13. How to make the header display in Firefox?

    The Header in my home page is truncated. My home page Header is cut off. The header appears in Internet Explorer, but not in Mozilla Firefox 3.6.13. How do make the header display?

    (Images or animations do not show) worked well.

  • How to make the phone's battery last longer ?

    Hi everyone,
    i am wondering if there is any difference when the battery is fully desharged thus the phone swithes off , and then you plug it into the power outlet to be charged.
    or if it is not fully decharged, and it has some one or two battery bars on the upper right corner of the display, and you set it to be charged, is there any signifficant difference between these two states ?
    is there any official or technical advice on "How to make the phone's battery last longer " ??
    thanks in advance.

    It depends on the battery.
    Charging the battery when there is some power in it is especially bad for NiMH batteries. The loss of power is called "memory effect" - battery "remembers" that it does not get fully utilized and over time starts supplying less power.
    But new Nokias come with Li-Ion or Li-Polymer and the effect on these being charged when there is still power in them is negligible. Especially for the Li-Polymer ones.
    See here about batteries and "memory effect":
    http://en.wikipedia.org/wiki/Battery_%28electricity%29#Life_of_rechargeable_batteries
    http://en.wikipedia.org/wiki/Memory_effect
    Here's more info on types of batteries:
    http://en.wikipedia.org/wiki/Li-Ion
    http://en.wikipedia.org/wiki/Lithium_polymer_cell
    Ericsson T10i -> Nokia 7110 -> Siemens C45, C55, M55, M65 -> Nokia 6131, N73, N82 -> HTC Wildfire, Desire HD -> Nokia Lumia 800 -> HTC Desire X -> Lumia 820 -> Sony Xperia SP -> Lumia 925 + Sennheiser CX 500
    If I've helped, use the Kudos button to thank

Maybe you are looking for