Size to Window

hello all,
i have been a bit of a plum and designed a website using my
widescreen laptop without thinking about how it will appear on
other screens... duh. Basically, i called a mate to check it out
and he says that the page is fine but really wide on his screen.
You will see this at www.triptychevents.co.uk (obviously if u
are on widescreen, it will look fine, great even! lol)
Is there a quick fix to this or do I need to resize
everything?
just wondered what anyone can suggest? yours hopefully, joe

And read this -
http://www.thepattysite.com/window_sizes1.cfm
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Ken Binney" <[email protected]> wrote
in message
news:e4nuo9$9pm$[email protected]..
> All you need to do is change the widfth of the container
tables in all
> your frames to
> a specific width in px.
>
> I use 760 to 800.
>
>
>
> "emannigol" <[email protected]> wrote
in message
> news:e4nocg$2su$[email protected]..
>> hello all,
>>
>> i have been a bit of a plum and designed a website
using my widescreen
>> laptop
>> without thinking about how it will appear on other
screens... duh.
>> Basically, i
>> called a mate to check it out and he says that the
page is fine but
>> really wide
>> on his screen.
>>
>> You will see this at www.triptychevents.co.uk
(obviously if u are on
>> widescreen, it will look fine, great even! lol)
>>
>> Is there a quick fix to this or do I need to resize
everything?
>>
>> just wondered what anyone can suggest? yours
hopefully, joe
>>
>>
>>
>
>

Similar Messages

  • How do I make my website fit in all size browser windows?

    Hi there,
    I should start off by saying that I am very new to web design, and have very limited knowledge of CSS and HTML.  I understand what they are and the nature of what they do, I'm just not code savvy. 
    Now that that's out of the way, I've been designing/attempting to build a website using Dreamweaver.  I have all of the components and layout that I want designed and ready to go, but I desperately need help with translating that into Dreamweaver.  I've been researching information all over the web, but with one person suggesting one thing and another suggesting something completely different I'm afraid my brain is about to melt.
    Here's what I've done so far:
    Because I want everything fully customized and to use a less common font style, I saved everything from the graphics, photos, and links as .png files.  I then inserted each of those images into an AP Div Tag in Dreamweaver and arranged them appropriately.  That's absolutely all I've done.  It works great, except I have no idea how to configure everything so the site layout shows up centered in any size browser window, instead of sitting awkwardly in the corner.
    Here's a link to what currently exists: http://ikikatawares.com
    I've read dozens of articles and forum responses about building tables, but I'd like to avoid that since to me they seem clunky and kind of a hassle to deal with.  Can anyone please help me?  Thanks.
    Beth

    You need to put only the bold part into your code.
    Immediately after your starting <body> tag add in
    <div id="wrapper">
    and immediately before your ending </body> tag add in
    </div>
    Then at the end of your css, you currently have...
    #apDiv10 .navBarLinks .navBarLinks {
    font-weight: bold;
    Change that to...
    #apDiv10 .navBarLinks .navBarLinks {
    font-weight: bold;
    #wrapper {
         position:relative;
         width:1005px;
         margin:0 auto;

  • Is there a HP color laser printer that can define custom-size media sizes in WINDOWS?

    Is there a  HP color laser printer that can define custom-size media sizes in WINDOWS?

    Have you tried downloading and installing the drivers from here?
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&prodTypeId=18...
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • How to increase the size of window in virtual tool box

    Hi,
    I have install rhel5 in oracle virtual box... but the size of window in which rhel5 runs is small and it is not covering the entire area of virtual toolbox....
    How can i increase the size of window to full size...
    Thanks and Regards...

    You need to install the "kernel-devel" and "kernel-headers" packages and then choose "Install Virtualbox Guest additions" from the Virtualbox menu, while logged in as root, in order to install the appropriate video driver that will allow you to resize the screen.

  • Appropriate partition size for windows 7?

    i just bought windows 7 and want to install it on my mac pro that i recently bought. i was wondering what's an appropriate partition size for windows 7 and if it matters whether i install the 32 bit or the 64 bit? i'm mainly using it for a game (league of legends) if that makes an difference. thank you for your time.
    -Nikko

    If you have more than 4GB of RAM or are planning on some time in the future to install more than 4GB of RAM use the 64 bit version. The 32 bit version can not address more than 4GB. Windows programs are now 64 bit. Your computer is 64 bit. 64 bit Windows runs 32 bit Windows programs. So there is no reason to install 32 bit Windows.
    Windows 7 requires a lot of space. Then you need space for any data you create. I think that at a minimum you need 50GB plus data. I would opt for larger rather than smaller so the minimum I would partition is 100GB. If you conserve space now by making a small partition it is likely you will fill up that space quickly. You'll then wish you had made a larger partition initially. Search this forum, there are several questions on how to make a Boot Camp partition larger.

  • Why does clicking on a link in a window produce a half-size new window, and can I change that?

    Whenever I click on something in a full-size window, I get a half-size new window. I don't want it to do that, but I don't know how to stop it. I want the new window to be full-size, and then if I want to resize it I do it manually. I have also experienced the behavior where when you start scrunching windows, Firefox keeps that up for you, even if they get quite small. That's OK, but now I have this thing where every new window prima facie has to be resized to be full, and I don't want it so, I never had this problem before.

    Thanks Jason, I had the same problem and did exactly the steps above. Problem solved! You rock! :)

  • How to set the fix size jframe window

    when I run the jframe ,the jframe window size is very small
    1)how to set the fix size jframe window??
    2)how to set the jframe cannot change the window size??
    thx~~

    1. You can set the size by calling JFrame's method setSize. There are two versions of this method: (1) setSize(int width, int height) and (2) setSize(Dimension d). Note, that when you use this method to set the frame size, you don't have to call JFrame's pack method.
    2. JFrame has a method called setResizable(boolean resizable) which you can call with the argument false.
    Without any ill intent, these questions are regarding something that is very easily answered by looking at the documentation for the JFrame class. I suggest to anyone working with swing to at least look briefly through the base classes they're extending before giving up. In my experience it is always more gratifying to figure things out on my own than asking someone. But please don't take this the wrong way, I respect people who seek out help in order to further their knowledge, instead of just giving up.

  • Annoying font size in windows title

    First time I installed Arch 7.2 I had small fonts in Gnome windows title, so I had to set Font size of windows titles to 12 (10 its the default).
    After some upgrade, this was fixed, and I could set font size to 10.
    Tonight I did another upgrade, and window title fonts became small again, so I had to configure font size at 12 again.
    Any idea whats broken this? its not an important problem at all, but its kinda annoying...

    delphinen wrote:Tonight I did another upgrade, and window title fonts became small again, so I had to configure font size at 12 again.
    Any idea whats broken this? its not an important problem at all, but its kinda annoying...
    The obvious thing to look at is what did you upgrade?

  • IE 8 Size of Windows, Boxes and Menus

    Satellite A665-S6086, Win 7 Home Prem 64, IE 8.
    1. I want every window to open full-size, not reduced size, without double-clicking the window title, clicking the maximize icon or dragging the window borders after opening.  What settings should I change to do this?
    2. I recently compared information on two sites by dragging the entire window of one site half-way down the screen, i.e., I was looking at the top half of both sites simultaneously.  I dragged the window back up before I closed it.  Now, after the first one during a browsing session, subsequent windows open half-size with the bottom located half way up the screen.  How can I get all windows to open full size?
    3. Even when windows are full size, whether in IE or not, dialog boxes and menu selections often run off the bottom of the screen when using the laptop display or an external monitor.  It is much worse when I use my 32-inch HDTV.  All display, monitor and TV setting are either selected automatically by Windows or set at the optimum recommended settings.  I tried adjusting the TV aspect ratio to maximize the view of dialog boxes and menus, then returned the settings to view content. To get around these problems I go to Control Panel, Display, and set the magnification lower when working with the offending menus and boxes, then return to my preferred settings, but shouldn't they fit (or be able to be scrolled) at 125% or 150%?  Monitor connected by VGA, HDTV by HDMI.
    Can the answers to any of these questions be found in any online documentation from MS or Toshiba?  Any help would be appreciated.

    I can provide a partial answer to my questions.
    1 and 2, regarding the size of windows: To get all windows to open full size, open a window and, if it is not full size already, use the pointer to drag the borders to the size you want for all subsequent windows.  DO NOT USE THE MAXIMIZE ICON (the square near the upper right-hand corner).  Right-click a link on the page and select Open in a New Window, and again drag the borders of this new window to the size you want.  When you have opened two windows that you resized, go back to the first one and close it by pressing the CTRL key then clicking the Close icon (the X in the upper right-hand corner).  Repeat this for the subsequent windows in order.  Now all windows should open to the size you want.  This is the procedure as described in the Microsoft Answers web site.

  • How to re-size itunes window in 11.2

    how to re-size itunes window in 11.2

    Javascript and then mess with these values to achieve the results you want.
    javascript:self.moveTo(100,100);self.resizeTo(1600,1000);
    javascript:self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);
    Likely the bottom one will work, just change "screen.availWidth" to half your screen pixel width.
    javascript:self.moveTo(0,0);self.resizeTo(960,screen.availHeight);
    Then paste into your Safari address bar, then click and drag the small left icon to your toolbar and when it asks to rename, rename it accordingly.
    Now all you have to do is click the button it makes and your screen adjusts.

  • Filter folios by device / layout size on Windows 8.1?

    Yet another Windows 8.1 question...
    Is it possible to enable the app to only pull one layout size in Windows 8?  I'm trying to avoid creating a second app account to cut done on production time.  Our Android app sorts our iOS folios by their size and serves the proper layout based on the device, but on Windows 8.1 using the same app id the user is displayed both phone and tablet folios.

    I think you're going to have to call Enterprise Support again. I confirmed:
    Your Windows app is pointed to the same account as in your screenshot ([email protected])
    The app is still getting folios from the server with incorrect renditions.
    Here's an example from the actual server response the viewer gets when it asks for a list of folios:
          <manifestXRef>2015.03.W5 - AL Weekly - iPhone</manifestXRef>
    See how it still has "- iPhone" in it? The viewer is behaving correctly with what it is given from the service. I'm not sure why the service is returning something other than what you see in the portal. That's something Enterprise Support should be able to help chase down.
    Neil

  • Check physical block size on windows

    Hi All
    how to check physical block size on windows 2008 R2
    got the solution
    thanks
    Edited by: 912919 on 04-Oct-2012 03:16

    912919 wrote:
    G:\app\testuser\product\11.2.0\dbhome_1\BIN>fsutil fsinfo ntfsinfo f:
    NTFS Volume Serial Number : 0x50967d40967d279c
    Version : 3.1
    Number Sectors : 0x0000000046da27ff
    Total Clusters : 0x0000000008db44ff
    Free Clusters : 0x0000000008917ae3
    Total Reserved : 0x0000000000000000
    Bytes Per Sector : 512
    Bytes Per Cluster :               4096Bytes Per FileRecord Segment : 1024
    Clusters Per FileRecord Segment : 0
    Mft Valid Data Length : 0x0000000002b00000
    Mft Start Lcn : 0x00000000000c0000
    Mft2 Start Lcn : 0x0000000000000002
    Mft Zone Start : 0x00000000000c2b00
    Mft Zone End : 0x00000000000cf300
    RM Identifier: F2719D9E-5DAB-11E1-8418-001B21D86903
    Can i create block of 16K for Oracle database 11gI give up.
    Can you?
    Why do you want to create block of 16k for Oracle database?

  • USB Thumb Drive Size for Windows 7 Profession​al Image

    I have a ThinkPad X100e running Windows 7 Professional 32-bit.  Can someone please tell me what the smallest size USB thumb drive I can use to create the installation/recovery image from the hidden partition using Rescue and Recovery?  I cannot seem to find that information in the Help menu or in the online FAQs or Knowledgebase.
    Thanks in advance for your assistance!

    it makes 3 DVDs so maybe 15 GB
    Thinkpad R61 7733-1GU
    Thinkpad X61T 7762-54U
    Thinkpad X60T 6363-4GU
    Did a member help you today? Thank them with a Kudo!
    If a post answers your question, please mark it as an "Accepted Solution"!
    Regards,
    GMAC

  • Screen size in windows 8.1 - all icons too small! How do I enlarge the entire captivate 8 screen?

    The entire Captivate 8 screen to too small. How do I enlarge the entire window? All icons and thumbnails are 1/4 the size they should be. Using Windows 8.1.

    It looks like it is an issue between Adobe and Microsoft. (Many Adobe programs are responding this way to Windows 8 and 8.1)
    I am posting this to try and get some (ANY) ideas/feedback...but to also bring it to the Captivate Community attention. I hope the Captivate Staff is aware of this issue.
    Same issue -great PhotoShop screenshot Photoshop too small on windows 8.1
    Photoshop CC / Windows 8.1 HiDPI / Retina scaling support
    Re: Adobe suite HiDPI on Windows 8.1
    Right side menu too small font size of letters in Windows 8.1 High DPI screen
    Re: Photoshop CC / Windows 8.1 HiDPI / Retina scaling support
    there are many many more out there......
    I tried this first, it comes with Windows and changes your display properties by application: (but it didn't work)
    The program above basicly edits these settings (you can get to these by right clicking on the exe application) I tried many combos, an even tried them under the "change for all users" setting.....NADA!
    I have tried editing the Windows display settings: (all screen shots below are with this setting size)
    The screenshot below is at 250%. It does not make any difference in the application (check out the menu bar, properties, icons....) If I go over 150% I lose dialog box space...the buttons disappear! If I keep it at 150% the words "Advanced Actions" at the top of the dialog box shrinks slightly, enough to fit the buttons in...) I showed the difference using snag it (12 pt arial compared to the appearance of the UI ~ 4 pt.) This is so hard to see! Same issue in some of the other adobe applications. (fyi...they are all up to date)
    Photoshop = same problem
    Dreamweaver = working fine
    Flash = working fine
    Premier Pro = half working....(menubar is ok but everything else is real small)
    Muse = not working
    Adobe Edge Code = Working fine
    OOF! Well, any thoughts anyone? I appreciate any and al feedback and ideas!!!

  • My home page and facebook games open with a very small window. The print is extremely small. How do I change the size of windows and print?

    Even when I click on full size in my games on Facebook, the windows are not as large as they were in Internet Explorer and the print size is very small. I had changed the size of the print in IE, but don't know how to change it in Firefox. The same is true for my homepage.

    See this:
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • Increase font size in Windows 7 Photoshop Elements 11?

    I'd have thought (since this has been a problem since 9 and that HD displays are fairly common now) it would have been addressed. I still can't find a way to increase the font size in PE 11, though. Am I missing something? It seems the menu fonts have increased in size in proportion to what Windows font size I'm using, but all the other fonts in PE 11 are still too tiny to read meaning (unless I am missing something) the software is still unusable (unless I sacrifice resolution).

    Oh well, at least I only downloaded the trial I guess. I feel sorry for anyone who buys this expecting it to be fully compatible with HD monitors. Adobe are being lazy, I think, expecting people to lower the screen resolution. I just checked PC World and 8 out of 10 of the most popular monitors were full 1080 HD. I wonder how many will go to GIMP and not return?

Maybe you are looking for

  • Neither of my ipod touches will synch

    I have 2 ipod touches That will no longer sync with itunes. I uninstalled, and reinstalled itunes. I am using Windows 7.

  • Format TC Drive to Mac OS Extended?

    been on the phone with mac support for about an hour about this but they could not help me even though they say it is possible. to cater for pc users the default format is fat 32 (according to support) which has a number of limitations like max file

  • Can't Edit or Delete SMTP servers on iPad Mini on iOS 7.0.2

    On an iPad Mini, when I sent outgoing mail in my gmail account, the messages are sent but they don't show up in my Sent Items when I log in to gmail from a browser on my desktop. I have gone into the outgoing mail server section on the account and I

  • Check the value of attribute of a child node in datatype xmltype.

    Hello, I have a xml stored in column having datatype as "XMLTYPE" <?xml version="1.0" encoding="ISO-8859-1"?> <Settings>   <Setting Name="A1" Value="N"/>   <Setting Name="A2" Value="N"/>   <Setting Name="A3" Value="SOMEVALUE"/>   <Setting Name="A4" V

  • Exporting at smaller rate

    Imported my CD collection at a low data rate. Plan to redo the entire collection with the new Apple lossless encoder. HOWEVER... I then need to export to my older IPOD - second generation 20 gig... which doesn't support the new encoder at a lower rat