How do I make sure my page width is optimized for all monitors?

I have a portfolio-ish website, and I've noticed that on small screens there is  white space if you scroll to the right. On big screens (Such as my 27" iMac), the design doesn't fit the whole screen.
http://treyflorkiewicz.com/
How can I fix this?
Thanks!

I believe you have used rectangle frames with image fill on page as background. You may want to use full width rectangles with images as page background which would fit on all screen.
Thanks,
Sanjit

Similar Messages

  • How do I make sure I am up to date with all the necessary updates from MAC?

    just wait for the automatic sofeware update? is there a site where they warn of virus maleware for MAC? I am reading on the BBC technology website and elswhere of a widows virus outbreak. but where do i go for MAC?
    Thanks

    nefsi wrote:
    dear Lyssa: does this apply for all sorts of essential updates from Apple/ adobe etc ? i.e. every time I i get the software pop-up telling me a new update is available I have to let it download the file but I have to look in the utilities for installer and activate it manually ? thanks
    No: Firmware Updates are rather unusual and operate differently to the normal software updates. They require a special procedure which is documented with the update. But even the normal software updates require the Installer to run: however Software Update will take care of that for you if you let it. You certainly won't need to go looking for the normal Installer.
    In your specific case, the page for MacBook Pro EFI Firmware Update 1.5.1 tells you:
    To complete the firmware update process, please follow the instructions in the updater application (/Applications/Utilities/MacBook Pro EFI Firmware Update.app). The updater will launch automatically when the Installer closes.

  • How do you make sure you weren't charged twice for one purchase?

    I downloaded an album and it's showing in my library twice. Was I charged twice?

    Look at your purchase history and see.

  • Webpage previews is no longer caching pages. How do I make sure settings will cache all pages visited?

    Webpage previews is no longer caching pages. How do I make sure settings will cache all pages visited?

    The cache may be full ..
    Using Safari ??
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • How do I make sure the content fits the browser?

    I'm having a little trouble making content on a website fit in different browsers. It seems to be making extra space on the right side in safari and a LOT of extra space on the right side in firefox. How do I make sure the content will fit and be centered?
    Thanks in advance!

    That question is a little like asking "how do I build an airplane?"  It's just too vague and open ended for us to give you a meaningful answer. 
    Answers to layout questions are contained in your HTML and CSS code.  For quickest help, please post a link to your online page.
    Nancy O.

  • How can I make two half page documents?

    I have a full page flyer.  I want to make it half page with two flyers.  I tried making two columns and cutting the page in half, but the borders are wrong.  How can I make two half page documents?

    You can do it with columns, just make the gutter twice the width of the outside margins.
    However being a Flyer why not just create one on the left using Textbooks and Shapes then group that and option shift drag it sideways to the right to make a copy on the right?
    Peter

  • How can I make sure that in RAM our sql server is not facing any mermory crunch issue?

    The SQL server process always show RAM is highly used while its a default behaviour of sql server.
    How can I make sure that in RAM our sql server is not facing any mermory crunch issue?
    Thanks

    The SQL server process always show RAM is highly used while its a default behaviour of sql server.
    How can I make sure that in RAM our sql server is not facing any mermory crunch issue?
    Thanks
    The best way to make sure you are not facing memory pressure is to use perfmon counters and monitor various memory counters
    For SQL Server 2005 - 2008 r2 use below counters
    SQLServer:Buffer Manager--Buffer Cache hit ratio(BCHR): IIf your BCHR is high 90 to 100 Then it points to fact that You don't have memory pressure. Keep in mind that suppose somebody runs a query which request large amount of pages in that
    case momentarily BCHR might come down to 60 or 70 may be less but that does not means it is a memory pressure it means your query requires large memory and will take it. After that query completes you will see BCHR risiing again
    SQLServer:Buffer Manager--Page Life Expectancy(PLE): PLE shows for how long page remain in buffer pool. The longer it stays the better it is. Its common misconception to take 300 as a baseline for PLE.   But it is not,I read it from
    Jonathan Kehayias book( troubleshooting SQL Server) that this value was baseline when SQL Server was of 2000 version and max RAM one could see was from 4-6 G. Now with 200G or RAM coming into picture this value is not correct. He also gave the formula( tentative)
    how to calculate it. Take the base counter value of 300 presented by most resources, and then determine a multiple of this value based on the configured buffer cache size, which is the 'max server memory' sp_ configure option in SQL Server, divided by 4 GB.
      So, for a server with 32 GB allocated to the buffer pool, the PLE value should be at least (32/4)*300 = 2400. So far this has done good to me so I would recommend you to use it.  
    SQLServer:Buffer Manager--CheckpointPages/sec: Checkpoint pages /sec counter is important to know about memory pressure because if buffer cache is low then lots of new pages needs to be brought into and flushed out from buffer pool, 
    due to load checkpoint's work will increase and will start flushing out dirty pages very frequently. If this counter is high then your SQL Server buffer pool is not able to cope up with requests coming and we need to increase it by increasing buffer pool memory
    or by increasing physical RAM and then making adequate changes in Buffer pool size. Technically this value should be low if you are looking at line graph in perfmon this value should always touch base for stable system.  
    SQLServer:Buffer Manager--Freepages: This value should not be less you always want to see high value for it.  
    SQLServer:Memory Manager--Memory Grants Pending: If you see
    memory grants pending in buffer pool your server is facing SQL Server memory crunch and increasing memory would be a good idea. For memory grants please read this article: 
    SQLServer:memory Manager--Target Server Memory: This is amount of memory SQL Server is trying to acquire.
    SQLServer:memory Manager--Total Server memory This is current memory SQL Server has acquired.
       8.  Free List Stalls/sec – Number of requests per second that had to wait for a free page
       9. Free Pages – Total number of pages on all free lists (free lists track all of the pages in the buffer pool that are not currently allocate to a data page, and are therefore available for usage immediately)
    NOTE: If you have NUMA system don't use PLE to monitor memory condition it wont give correct value
    From 2012 Onwards
    Memory management has become easy from 2012 onwards as
    Max server memory also allocated memory for requests which require memory >8KB
    SQLServer:Memory Manager:Free Memory (KB)
    SQLServer:Memory Manager:Target Server Memory (KB)
    SQLServer:Memory Manager:Total Server Memory (KB)
    For NUMA system its also wort monitoring each node.
    Object - SQLServer:Memory Node:Total Node Memory
      (KB)
    Object - SQLServer:Memory Node:Target Node Memory
      (KB)
    Object - SQLServer:Memory Node:Free Node Memory
      (KB)
    Ideally if target server memory is less than or equal to total server memory there wont be memory pressure if target is > total it does not always means its memory pressure
    BCHR would also give you good idea about memory pressure
    If memory grants pending is frequently non zero there is memory pressure
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Hello, How can I make borders in pages?

    Hello, How can I make borders in pages?

    What version of Pages?
    Just make a suitable bordered shape and make it a Master Object in the background.
    PS. It is the sure fire way to make your work look amateur, which is why it is not in the Apple templates.
    Peter

  • How do I delete photos from my daughter's ipod that showed up on there when she got music from her aunt's itunes? Also how do I make sure none of my iphone pics show up on her ipod in the future (we use the same itunes account and I think same icloud).

    I'm totally new to iphone/ipod.  I need help with the following:
    1) How do I get rid of a folder of photos that showed up on my daughter's ipod touch when she received some songs from her aunt's itunes?  After she got some songs from that itunes a folder of pictures showed up with no delete option.  Does she need to reconnect to that itunes/computer and if so what do we need to do to remove this folder of pics from her ipod?
    2) Also, my daughter uses same itunes as myself, how do I make sure any pics I have on my iphone & icloud (itunes) don't show up on her ipod? I shut off my photostream so perhaps this is the solution.  But I noticed that a message I sent from her ipod to my sister (an iphone user) later showed up on my iphone (as if I had sent it from my iphone)! That was really odd. I'd like to keep our itunes account together simply so I can monitor her downloads, etc so I don't want to open up her own itunes to avoid automatic syncing.
    I only want to share music between our devices.  I don't want her pics nor my pics to go to icloud/itunes.
    Thank you!

    1) You asked "Does she need to reconnect to that itunes/computer and if so what do we need to do to remove this folder of pics from her ipod?" Yes, you have to connect the iPod to that computer and go to the Photos pane for the iPod in iTunes and uncheck sync photos and the click on synce/apply. In the future do not check sync photos.
    iOS and iPod: Syncing photos using iTunes
    2)
    Create a NEW account for using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before.
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    Then on the iPod go to
    - Settings>Messages>Send and receive and sign out your ID and sign into hers. Make sure that only her ID email address is listed.
    - Settings>FaceTime sign out of your ID and sign into hers. Make sure that under You can be reached at only her ID email address is listed
    - Settings>iCloud and sign out and sign in with hers
    Contnue to use the commpn ID/account for Settings>iTunes and App stores.

  • I have just switched to samsung and i have removed the sim from the iphone however i am still receiving texts rather 'imessage' on the old iphone. how do i make sure all messages only come to my new phone??

    i have just switched to samsung and i have removed the sim from the iphone however i am still receiving texts rather 'imessage' on the old iphone. how do i make sure all messages only come to my new phone??

    You can turn iMessage off on your iPhone.  That's relatively easy.  Since iMessage is an Apple product/service, I have no idea how a Samsung phone will deal with an incoming one.  For that answer you should probably contact Samsung support.

  • How do I make sure my iPhone sends a text not an iMessage?

    My iPhone seems nowadays to try to send a SMS as an "iMessage" rather than a text. This does not work very well. I have had delays of several hours, and messages delivered to computers at home rather than the phone in the pocket. Also it uses data bandwidth rather than the phone signal without asking my permission. This is a serious shortcoming IMO.
    How do I make sure that my text messages actually are text messages.

    Just turn off iMessage in Settings

  • HT4236 If I want to delete the photo library from my iPhone, how do I make sure I dont delete them from my desktop as well?

    If I want to delete the photo library from my iPhone, how do I make sure I dont delete them from my desktop as well?

    If you have copied them to your computer, then you will be OK.  Just deselect the photos when you sync.

  • How do I make sure that my second-hand iPod is not a stolen product?

    My husband recently recieved an iPod shuffle from a friend of his. His friend told him he could have it since the friend didn't have a computer to download songs from or charge the iPod with. He states that he thought the iPod already had songs pre-recorded on it, and even if he used someone else's computer to get the songs, it's too much trouble. My husband had lent him some money to pay a utility bill and he was using this iPod that he just happened to have laying around to pay my husband back. I don't trust my husband's friend. How can I make sure that he isn't trying to push a stolen iPod off onto my husband? We haven't used it yet. My husband doesn't have much use for the shuffle, but I would love it, if only I could find out whether it was stolen or not. I don't want to take it to the police and start a big fight or get his friend in trouble, but if it is stolen I want to know so I can send it back to Apple or who ever owns it.

    Hi pyrausagi,
    You sound like a very honest and sensible person, who is taking very reasonable precautions against becoming a second victim of theft. Others on these forums have been less cautious and have lost their recent purchases.
    My suggestion would be to make sure the person offering the iPod shuffle is easily identifyable. Make sure he/she has a real address and you know what it is. Get a picture of the person and make sure they know you have it. If they are not above board I'm fairly sure they won't allow this.
    There are a number of online databases of stolen merchandise. Look them up and check the serial number of the iPod against these databases.
    Apple will not tell you if the item is stolen. Their phone agents that work with the public do not have that kind of information.
    Note that doing all this will not guarantee you don't get a stolen iPod. Only purchasing one new (or refurbished) from Apple or an authorized reseller can do that. It does, however, give you a better chance.
    Best of luck. Enjoy whatever iPod you get.

  • I updated to iOS7 and my deleted photos came back.  How do I make sure this doesn't happen again?

    I updated to iOS7 and my deleted photos came back.  How do I make sure this doesn't happen again?  I want to get rid of the ones I already got rid of, but if they just keep coming back that will be a waste of time. 
    Can anyone help?
    When I sync with itunes, the photos sections says I am syncing with my iphone, so I assume that anything I physically delete from my iphone should not be showing up again.  Right?
    Thanks in advance.
    CM
    PS- I don't use iphoto. 

    Is that really how sync works?
    If you read this, http://support.apple.com/kb/ht4236  and this http://support.apple.com/kb/TS1314  they don't actually make how sync works very clear.  I had thought that syncing my device to itunes would allow I tunes to copy what was currently on my phone so that I could restore that information when needed ie if your phone dies and you need to do a clean install of the iOS system, you always have what is currently on your phone saved in Itunes.
    Specifically reading this:
    To delete Camera Roll photos and videos from your device
    There are two methods to delete items from the Camera Roll:
    Import the Camera Roll to your computer and choose to delete items after import.
    Delete photos and videos from your device manually:
    Open the Photos application and open the Camera Roll.
    Tap the Action button.
    Tap each photo to select it.
    Tap the Delete button.
    Note: For photos and videos you want to save, import them to your computer before deleting them from the Camera Roll.
    What you seem to be saying is that iTunes saves every contact, message, photo etc and when you click sync, it reuploads things that you deleted?  This seems like it should work the opposite.  Make a mirror image of my iPhone on my computer, not make a mirror image of my computer onto my iPhone.  You delete things for a reason. 
    Help- anyone else?  Is razmee209 right?

  • Nokia C3 How can I make sure it only connects thro...

    Ive just got this phone for my daughter on Vodaphone contract, I am really worried however that it is going to randomly connect itself to the internet like my old Nokia 5800 used to! How can I make sure it doesn't, I don't want it to end up costing me a fortune. Many thanks

    Only the website (server or domain) that sets a cookie can read that cookie, but there can be an iframe embedded with a different domain that sets so called third-party cookies.
    You can disable third-party cookies.
    *https://support.mozilla.org/kb/Disabling+third+party+cookies

Maybe you are looking for

  • IPhone 5 Freezes after upgrading to IOS 8

    I have been experiencing performance issues on my iPhone 5 since upgrading to IOS 5. I searched the internet and performed all the recovery suggestions offered by other users. The problem seems to persist regardless of various reboots, restores and o

  • Monitor 1920x1080 trouble

    Hello everyone, I'm having trouble  with getting my macbook pro mid 2012 (running latest Maverick) to display the 1920x1080 resolution on my external monitor. It only fills part of the screen and has a black border around it. Is there anyway to allow

  • Syncing with IMAC via bluetooth

    I am trying to sync my iphone with my new IMAC via bluetooth. they see each other and are paired - but when I click on iSync it says it cannot connect to the device so it cannot sync. What am I missing? I checked a list of supported devices for bluet

  • Let the database doing cascade deletion for privateOwned relationship

    Hi, I have two tables: parent, child. I mapped the parent to child as a one-many private owned relationship. The child table have a foreign key reference back to parent table. The constraint is like this alter table child add constraint FK_CONSTRAINT

  • Creator Name Missing

    Dear Friends I attach document to a Purchase requisition by Assign and store method in SAP Archive link. The document is linked to PR properly through GOS>Attachment List. But I am not able to see the creators name in hit list when I see list of docu