How to make screen bigger?

Is it possible to make the viewing screen bigger on my site? I added a game and part of it is being cut off. I need step by step instructions if possible.
,Miss Macintosh XOXO

Depend on a lot of things. First you need to know what is your screen resolution. But more important what is the screen resolution of your visitor. Yo know that I use Google Analytics (may be there is other tools outhere).
I noticed with this tool that most of my visitors were using resolution above 1000px so I decided to bump my site from 710px (default in Iweb) to 1024px (over 50% more). Now my pictures look bigger without being too big (no need to scroll on the left and right). But also I know that some people use lower resolutions so I know that not all visitors will not be happy.
If you look at my home page you will see that the width is 710px: http://www.wesdotphotography.com/Home.html
but if you look at this picture the width is 1024px: http://www.wesdotphotography.com/WI01.html
Hope this help.
Thierry
PS: I may get compensation if you visit my site and click on Google ads.

Similar Messages

  • Cooking with iPad how to make screen stay on longer

    Cooking with iPad how to make screen stay on longer

    Try, settings - General - Auto Lock. Set to your preferred time.
    Stedman

  • How to make screen resolution independent in BDC

    How to make screen resolution independent in BDC

    hi
    good
    You need to use the CTU_PARAM structure alon with the call transaction statment.
    **Sturcture of CTU_PARAM
    **DISMODE : Display mode (like the MODE addition 'A' , 'E', 'N')
    **UPDMODE: Update mode (like the UPDATE addition 'S', 'A')
    **DEFSIZE : Use default window size (Here we are handling those transaction by giving default window size)
    **RACOMMIT: Do not end transaction at COMMIT WORK
    **NOBINPT : No batch input mode (that is, SY-BINPT = SPACE)
    **NOBIEND : No batch input mode after the end of BDC data.
    *The components DEFSIZE , RACOMMIT, NOBINPT, and NOBIEND always take the following values:
    'X' Yes
    DATA : L_OPTION TYPE CTU_PARAMS, "Parameter string for runtime of CALL TRANSACTION
    L_SUBRC TYPE SYSUBRC.
    L_OPTION-DEFSIZE = 'X'.
    L_OPTION-DISMODE = P_MODE.
    L_OPTION-UPDMODE = 'S'.
    CALL TRANSACTION 'FK01' "FK01-Vendor master creation
    USING IT_BDCDATA
    MESSAGES INTO IT_MESSTAB
    OPTIONS FROM L_OPTION.
    thanks
    mrutyun^

  • HOW TO MAKE FONTS BIGGER IN FINDER MENU

    How can i make fonts bigger in finder menu and safari menus . everything is very small

    Zoom works well or:
    Sidebar Text & Icons can be set to small, medium or large. > System prefs > General > Sidebar Icon size..  Sorry Lion..
    Finder text can be made larger > View > Show view options.
    Safari & Mail  command + works reasonably well.
    Changing the Display resolution > System Prefs > Display may work OK for you.
    Third party freeware option > Tinker Tool.
    Must admit I wonder if my eyes would cope OK with the HighDef screen on an Air..

  • How to make screen field enable when table control gives an error

    Hi,
        I had a scneario like when table control data wrong then one parameter of the screen should be enabled for the input, i knew that screen-name will not work since it will have always table control fields only when table control gives an error.
    How to make the other parameter enable when table control throws an error.
    Regards,
    Jaya

    Hi Gobi,
         Thanks for your response, but issue is - how to make other screen fields enable when there was an error in the table control data.
    For table control - lets say we will use the code as i mentioned above.i am sure that we cant write the code for field enable in between loop & endloop.
    as you said if we right outside the loop-endloop, the module wont be triggered when table control throws an error, because that statement was not there in the loop-endloop.
    please let me know if you need any more information on the issue. I hope there is alternative for this in SAP.
    Thanks
    Jaya

  • How to Make Fonts Bigger in Safari Menu Bar and Tabs

    Hello,
    I just set up a new IMAC 27" for my mom and she cannot read the menu bars and tabs in Safari. I know how to make the text of the webpage itself bigger, but is there any way to make the text in the menu bars and tabs bigger.  Someone sugggested Opera browser. Would that be a better option?
    Thanks
    John

    Welcome!
    I had the same issue with my 27-inch--here's how I fixed it:
    1) Go to System Preferences > Displays and select the "Displays" tab
    2) For "Resolution" there are two buttons: "Best for Display" and "Scaled." Select "Scaled."
    3) Now you should see a list of resolutions. The default is probably 2560x1440. Change it to 1920x1080.
    I don't have great eyes but this setting makes it easy for me to see. It makes all menu bars including Safari about 3/10ths inch wide and the menu lettering close to 1/4-inch tall.

  • How to make screen elements invisible ??

    Hi,
    In  my selection-screen, I can add no-display attribute to Parameter data but how can i make screen elements invisible which are declared as follows ??
    PARAMETERS: SMALLLOG as checkbox .
    thanks

    PARAMETERS: SMALLLOG as checkbox user-command abc.
    at selection-screen output.
    ***if it is input disable
    loop at screen.
    case screen-field.
    **if input disable
    when 'SMALLOG'.
       screen-input = '0'.
       clear smalllog.
    endcase.
    modify screen.
    endloop.
    loop at screen.
    case screen-field.
    **if inivisible
    when 'SMALLOG'.
       screen-invisible = '1'.
       clear smalllog.
    endcase.
    modify screen.
    endloop.
    Message was edited by: Vijay Babu Dudla

  • How to make font bigger than 1296pt. in cs4????

    hello, ok i  am editing this to make it easier i hope. question why cant i make font bigger than 1296pt. in cs4. my template is 24"x150" for some vinyl i want to cut. cs4 wont let me transform type that big...so how can i accomplish that. i created what i needed in photoshop and reopened in cs4 that worked but now i cant get it to create outlines. what am i doing wrong or not doing at all??? thanks for all the help in advance -nick 

    You could set your type in Illustrator, convert it to outlines and scale it.
    If you want to keep it editable as long as possible, apply a transform effect and scale it that way

  • How to make screen fields editable

    Hi all,
    iam writing a validation for FD32 transaction in exit, if the validation fails showing error message.
    Porblem is when ever error message comes and after that if i press enter fields are going to mode of non editable ( Display mode), how to make them editable which were already editable ( before error message comes).
    Iam not using module pool program for this, iam writing code in include exit and throwing the message.
    Thanks,

    Hi,
    You can use pop up window to display error message as below:
    -Quote-
    AT SELECTION-SCREEN ON ABCD.
      IF <condition fails>.
        CALL FUNCTION 'FC_POPUP_ERR_WARN_MESSAGE'
          EXPORTING
            popup_title        = 'Error'
          IS_ERROR           = 'X'
            message_text       = 'Error message description'
            start_column       = 25
            start_row          = 6
        STOP.
      ENDIF.
    -Unquote-
    You may also use:
    -Quote-
      IF <condition fails>.
        MESSAGE 'abcd' TYPE 'E'.
      ENDIF.
    -Unquote-
    Kindly let me know whether this is of any help or not.
    Regards,
    Shayeree.

  • How can I make screen bigger than the 2 inch square for Quicktime playback

    My playback of videos with Quicktime has viewing area of about 2 inches square. How do you make it larger for video viewing?

    Note that if the video is in a low resolution (as would seem to be the case given the native window size), expanding the window will yield a fuzzy picture, more so the larger you expand the window.

  • How to make text bigger?

    Once again when you want to do something simple it seams impossible. how can I make the event text bigger in all views? I see the adjustment fro printing the calendar but not for viewing. Thanks for your help
    G5 Quad 2.5 Ghz, MacBook Pro 17 Core Duo   Mac OS X (10.4.8)  

    I do not know why the black frame started appearing on my monitor either.
    The first time I noticed the problem was when I wanted to show a friend the iTunes Visualizer in full screen. The images appeared confined to the center of the screen with the black frame around them. Later I realized that changing to smaller resolutions than 2560 x1600 also caused the black frame to appear. At the time I was using 10.4.4. Tried all options in iTunes but nothing helped. Then I tried many things such as repairing permissions, ran onyx, reinstalled iTunes, archive and install Tiger, I even erased and zeroed my hard drive and reinstalled my original Panther disc, still no help.
    One thing I was fortunate to have done before I noticed this issue was to have made a clone of my OS which was 10.4.2, this OS worked perfectly when I booted from it. This confirmed it was a software issue and not the hardware. After many calls, Applecare wanted to send me a new hard drive, they had not encountered this problem before. The way I finally solved the problem was to use my 10.4.2 clone and copy this to the affected drive. This happened about two months ago and now everything still works as normal.
    If you could get the resolutions to work properly, this would probably be the best way to increase the image sizes. I noticed you have an iMac, is that computer working all right. Try resizing the resolutions on that, she may need to use that computer instead for this week.

  • How to make Screen Splitter in c#

    Screen Splitter will allow main screen to be split into two or more sections. It will be helpful for the
    active program’s window to be resized properly to one part of the screen. Using this utility, User will be able to do a split system desktop into two or more areas.
    there will b multiple buttons with directional arrows. It’s
    lets users quickly snap windows into a variety of sizes and positions using action buttons.
    i don't know how to start .. kindly guide me .... i can't understand which functions and classes to use.. as i am self learner and beginner programmer.

    You can add splitContainers, that are 2 panels, and inside each panel you can add another split container, and then again and again...
    To make panels fit on the maximum size of the form you'll have to use dock propery = fill or anchor it to top, right, bottom and left
    http://www.axure.com/learn/dynamic-panels/advanced
    http://www.axure.com/learn/dynamic-panels/advanced/drag-drop-images-tutorial
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • THE FONT SIZE ON TOOLBAR IS TOO SMALL HOW DO MAKE IT BIGGER?

    THE FONT SIZE ON MY TOOLBAR IS REALLY SMALL. HOW CAN I RESTORE THEM TO THE BIGGER SIZE?
    == This happened ==
    Every time Firefox opened
    == FIREFOX UPDATED ON 6/25/10

    Reset the page zoom on pages that cause problems: '''View > Zoom > Reset''' (Ctrl+0 (zero); Cmd+0 on Mac)
    See [[Text Zoom]] and [[Page Zoom]] and http://kb.mozillazine.org/Zoom_text_of_web_pages
    If you need to increase (or decrease) the font size on websites then look at:
    Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • How To Make Screen Controls Disappear In Full Screen Mode?

    I downloaded Quicktime 7.2 and even though I have selected Edit/Preferences/Player Preferences/Full Screen and under Controls, Display Full Controls, Hide after 2 seconds -
    When I am watching a video in full screen mode, for example the latest Keynote Address by Steve Jobs, the control panel which accesses Stop/Pause/Fast Forward etc., does not disappear regardless of how long I wait. Additionally the mouse pointer does not disappear either.
    I have to move the mouse pointer off the screen and/or move the Control Panel all the way down out of the way for it not to be visible.
    If I Deselect the "Display Full Screen Controls", then of course the controls do not appear, however the mouse still stays on the screen in full screen mode.
    How do I correct this. The Windows Media Player functions perfectly when I watch movies in full screen - controls disappear and so does the mouse. If I move the mouse, they reappear then disappear again after a few seconds.
    Any advice in correcting this would be appreciated.
    Thanks!

    Yes, this is annoying, however I'm glad you 2 guys finally posted. This is what I've found out so far. If you delete the .plst file (do a search for for it), it appear that it will be recreated again by Quicktime. That cured the problem with the Control Panel disappearing after the preset time set in preferences. However, the pointer will not disappear. I tried to uninstal and reinstall and also view different movies, but it will not disappear.
    So give that a shot and see if that resolves 50% of the problem. In Media Player, the control panel and pointer disappear in Full Screen mode. In Quicktime there seems to be a quirk. I've searched on this forum, but have not been able to find any other threads that indicatd a resolution to this issue. So let's hope that someone does or that Apple figures out the problem and issues an updated version for this.
    There was a new update that I received over the past few days and I was hoping this would resolve this issue, but it didn't.
    I've also read here that going to Windows Safe Mode and activating QT, watching a movie, then going back to normal mode fixes some issues. I've tried that too, but the pointer just will not disappear.
    I've tried disabling the Control Panel and then it won't appear at all, but the mouse pointer always does and the only way is to move it physically off the screen. When you move it the Control Panel will appear for a few seconds, then disappear again.
    Try these things out and comment on what you discover.

  • Unable to make screen bigger on u tube

    HI
    i am unable to make the screen full size when watching a film on u tube.

    If it doesn't expand using the arrows put two fingers on the preview window and separate them.

Maybe you are looking for

  • How can I change the "short name" of my account?

    I want to change the short name of my account because when my dad bought this computer for me he set up the account with his name as the short name and it has been bothering me ever since. When I go to system preferences and then accounts my account

  • Generate DB reports for many Schema's automatically.

    Hello, I am using ORACLE DB 11g R1 & RHEL 5. I have a DB server the MAIN SERVER in which i have many schema's and i have scheduled a crontab job to take a backup of each schema on a daily basis. The same backup file (.dmp) is then imported to a BACKU

  • OUI failed to Select Cluster node on AIX- 9i RAC with HACMP

    Dear It seems HACMP cluster is working fine. rlogin, rcp are also working. But oracle installer failed to pop up the "Cluster Node Selection" window. [p650_cdr1][root]/> lssrc -a | grep -E "ES|svcs" clcomdES clcomdES 35888 active topsvcs topsvcs 3463

  • Best blogging software for OS X group blogs

    I've tried Mars Edit and Mac Journal. There is an issue with line breaks, both apps send text and the blog seems to ignore spaces and breaks. Anybody using blogging software that formats entries nicely for OS X Server blogs? Thanks, -- jmca

  • JTabbedPane resizing

    Hi I'm creating an application that uses a JTabbedPane and i want the panels in the tabs to have different sizes, what i want to know is that if its possible to have the JTabbedPane resize after you change the tab. Is there any way to this in the cre