Page size keeps changing between pages based on browser zoom

I recently started designing a web page for a golf league.  I designed my main page (index.html) and have it laid out all nice and neat with 9 divs (outer, wrapper, logo, social media, topnav, banner, content, rightside, footer).  My main page has horizontal navigation links near the top of the page for 7 different pages (Home, Course, Events, History, Statistics, About, Contact).  I created 6 blank html files for the other 6 pages and then created and applied the template from my main (Home) page to the other 6 pages. 
All the pages are laid out perfectly and everything seems fine.  However, when I view the web pages and use the zoom on my mouse (CTRL + Mousewheel), it only remembers the zoom level for the current page that I'm on.  NOTE: FYI, I'm viewing all of these pages offline, which I assume might be the problem.
For example, if I'm on my main page and zoom in, then click the "Events" link, it switches to the Events page, but doesn't have the same zoom level.  These zoom levels also seem to be saved (to my browser, not the dreamweaver code), because when I close the browser and reopen it to the web page, it remembers the previous zoom settings.
I just started building a web page a few days ago and don't have a published web page as I haven't selected a host yet, but plan to when I know how what exactly I need in terms of size.  All the web pages I've been viewing are on my hard drive.  Is that why the zoom is not consistent across all my pages?  To clarify, if I zoom all the way in on my home page, then click "Events", the Events page won't necessarily be zoomed all the way in, it will be at the same zoom level as the last time I viewed it.
I just want to know if this issue will go away when I actually publish my page to the internet and view it on the web?  If not, I'd like to tackle the problem now before I publish it because this site has to be professional since we're holding a big charity event in the fall with a major and well known charity and celebrity.
Thanks in advance for any help!

You're not using frames or framesets are you?
In which browsers are you testing your site?
My experience in Firefox, Chrome & IE9 is that Ctrl++ (zoom) remains constant until I change it.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com/

Similar Messages

  • So, after my iPod touch died, i plugged it into the computer to try and charge it, and now it keeps changing between the charging screen, the apple logo, and a blank black screen, still hasn't charged, and its been plugged in for almost an hour now

    So, after my iPod touch died, i plugged it into the computer to try and charge it, and now it keeps changing between the charging screen, the apple logo, and a blank black screen, still hasn't charged, and its been plugged in for almost an hour now

    See the not-charging topic of:
    iPod touch: Hardware troubleshooting
    Have you tried another cable?
    Another charging source? Does iTunes see the iPod when you connect to your computer?
    Look at the dock connector on the iPod. Look for abnormalities like bent or corroded contacts, foreign material and cracked or broken plastic.
    - An appointment at the Genius Bar of an Apple store might be in order

  • I use BT Yahoo! but when I try and navigate to email from the home page it keeps jumping between 'connected and waiting for login' and never loads up.

    My internet service provider is BT in the UK. The home page is www.btinternet.com. After I've logged on, the home page displays fine - I can see the summary of my emails in one of the windows on the home page. The problem comes when I click on the mail application. The page then tries to load the email application. However, it never actually loads, it keeps jumping between connected and waiting for login. It never achieves it so I just have to click the 'back' button to get to the home page. I use chrome and ie but neither has this problem.

    I retraced my steps to how i got the Google app:
    App Store icon on Home Screen > Search, at bottom > entered Google
    The first Google App on the screen appears:
    Google logo small g in blue square: Google Search; Open (because it is already installed).  Below that is a picture of the iPod with the usual  Google Search screen.  I have never inserted a link into a discussion group so i hope you can open this. 
    http://https://itunes.apple.com/us/app/google-search/id284815942?mt=8
    Does this bring us any closer? 

  • Change pdf page size to uploaded file page size

    I've added a new page size in the PDF printer -- but when I identify a file that is being converted
    in Acrobat Pro9, the finished pdf is always 8x11. I can't find any page size adjustment in preferences
    or page setup,properties, etc.  Please help

    >How do I change the pdf page size to print on the larger size without the blank, empty margins above and below the page?
    You can't. That would require changing font sizes and document reflow. 8.5 x14 isn't proportionate to 8.5x11.

  • How can I make my content follow my master when master page size is changed?

    I have a header with a menu structure etc. that is set as a master page. When I create a new page and apply the master to this page, everything looks fine. I will then start designing the rest of the page. However, if my master page should change size, the content of the page it is applied to will not move accordingly. What am I doing wrong?
    I'll try explaining it with an example:
    Say my header on my master page is originally 250px in height, and I design all the pages using this master, but then decide that my header needs to increase to 300 px in height. Then my master header will just be laid OVER the content of the page. Isn't there a way to make the content under the header move automatically when the master size is changed?
    Also, it really should be possible to add more than one master to a page.

    The correct master is applied, but I can't get it to work. Am I doing something wrong with the guides?
    I have included screenshots that show how the master looks, how the page with the master looks, and what happens when I change the size of the master page.
    Master:
    Page with applied master
    Content doesn't move when master page changes size
    Please let me know what I'm doing wrong!

  • Hide/show region, keep value between pages ?

    Hi,
    I'm using APEX 3.2.1 with Oracle 10g on Windows XP Pro SP3.
    I have 2 menus (regions) who can be hidden or shown by clicking on an image (like in some IDE). The following javascript is called on the "onClick" event :
    function visibilite(region,image) {
         if (region.style.display == "none")
              region.style.display = "" ;
         else
              region.style.display = "none" ;
         if (image.src.indexOf('gauche.png',1) == -1)
              image.src = image.src.replace('droite.png','gauche.png');
         else
              image.src = image.src.replace('gauche.png','droite.png');
    }It works perfectly, but when I navigate to an other page, the menus are obviously shown by default...
    So I just want to keep the value from the previous page to show or hide my menus in the current page.
    I can add page item in all pages and assign value using the url, but it seems not optimized as I will have a lot of pages (>100).
    I can use an application item too, but I tried and I can not assign a value from javascript, and I don't know if it's a good solution as it will force me to call the javascript function just after the menu will be shown, to quickly hide it.
    does anyone think of another solution ?
    Thanks.
    Yann.

    Create a Page 0 item which will be available on all pages.OMG yes I can use items in page 0 ! I should have think of that :/ Shame on me.
    Application item values can be set from JavaScript using AJAX and an On-Demand Process.Yes I already tried ajax with ODP, my getappitem() function works but my setappitem() function won't assign value to application item, but it's not a problem now, I removed the ajax part and I will use page items :D
    Thank you fac586.
    Yann.

  • Changing  between pages using jsr286 events.

    Hello,
    I am trying to implement inter portlet communication between 2 portlets which reside on 2 different pages using JSR 286 implementation.
    I added supported-publishing-event and supported-processing-event in portlet.xml and able to fire the event from portlet A and able to handle the event in portlet B. However I am unable to navigate to page where portlet b resides. After handling the event, portal still displays the portlet A page.
    How do I tell portal container to switch page while processing event?
    Any help appreciated.

    Hello,
    There is no "standard" mechanism for doing this from JSR286 portlets-- the JSR286 specification doesn't deal with the concept of portlets on other pages, or how to switch pages.
    However, WebLogic Portal has a mechanism for doing exactly what you want to do. You'll need to create a file in your webapp with a ".portlet" extension, which looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <portal:root xmlns:netuix="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0" xmlns:portal="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0 portal-support-1_0_0.xsd">
        <netuix:javaPortlet definitionLabel="portletNameFromPortletXml" title="sample portlet">
            <netuix:handleCustomEvent qname="{event.namespace}eventLocalPart">
                <netuix:activatePage/>
            </netuix:handleCustomEvent>
        </netuix:javaPortlet>
    </portal:root>The "portletNameFromPortletXml" is the portlet-name as declared in your WEB-INF/portlet.xml file, and is used to tie this .portlet file to the particular portlet in portlet.xml that you want to extend.
    The "{event.namespace}eventLocalPart" is the fully-qualified JSR286 event name, expressed in Java QName notation (with the namespace in {}, followed by the local part).
    The "activatePage" XML tag is used to tell WLP that when this portlet receives this event, automatically make the page that the (receiving) portlet is on the visible page. You don't have to have any code in the portlet to even handle this event-- any time it is sent, the page the portlet is on will automatically be made visible.
    Kevin

  • Custom page size results in blank page

    I have a networked HP Color Laserjet 2605dn printer and have some 7.25"x5.25" envelopes that I need to print addresses on. So, I created a FileMaker database and went to print them with a custom page size I created and only get blank pages. If I change the page size to US Letter, it's OK, but obviously, the text appears in the wrong place. I used a different application Intaglio to see if it's a FileMaker issue or Mac OS issue and the problem occurs with Intaglio, also.
    Just to be sure, I have re-installed the most recent HP driver (4.3.5.153) and there's still no difference. I do have the proper driver selected. The Generic Postscript driver does not appear to allow custom page sizes. I'm led to believe the HP driver may simply not support custom page sizes. Looks like I might have to use a Windows system to print these???? What a shame.

    You may find that this a printer limitation rather than a driver issue. Is the envelope size you are using a supported size by the printer? If not, the envelope could be printing blank because the X-Y coordinates for the start of the text are based on a different size to the one you are loading into the printer. This would cause the text to print to a section that the envelope doesn't cover.
    Some printers make you select a free-size setting for non-supported sizes and then rely on the driver to write the text onto the correct spot. Do you have such an option.
    PaHu

  • CS5.5 page palette - , instead of - between pages

    Hello,
    I am a newbie.
    I made a masterpage A-PL (see also inserted figure). I inserted a new page before page 2 and in the tool palette there is a "," instead of a "-" between page 1 and 2.
    I already copied the text (great table with cross-references), inserted a new "empty" page based on A-PL master page and then I also saw that there was no link between the new page (1) and the second page. I manually added the link between the 2 pages. Strange that there is no automatic link between these 2 pages. On the Masterpage A-PL there is an link between the left and the right side.
    I hope that someone can help me.

    Normally, we work with Framemaker. The first page of the body text in the book file must start Left. In indesign is that not possible. There is an procedure to start it left (add a page before the page that must start left, disable "allow document pages to shuffle", delete the inserted page, and then the page (who first started at right, will start at left)).
    I did this procedure but I remarked that there is a "," on the marked blue pages in the capture instead of a "-".
    It was also strange that when I inserted the blank page with the same section numbering and same master page setting, the link between these pages where gone. I have to set the link manually.
    I hope it is clear now...

  • Implementing multiple page size requirement - extra blank page at the end

    My XMLP report requirement is as follows.
    - The report is printing a bunch of lines.
    - Based on data and layout requirement, lines are grouped into page where they belong (due to complex logic for determining which page a line should go to...this is done in PL/SQL package that is called in the beginning of the RDF trigger)
    - The first page needs to be printed on Legal size paper
    - Subsequent pages (IF NEEDED) need to be printed on Letter size paper
    So some report will have a 1-page output (legal size), and some will have multiple pages (1st page should be legal size, subsequent on letter size).
    Here is a sample XML data:
    <REPORT>
    <LIST_G_PAGE_NUMBER>
    <G_PAGE_NUMBER>
    <PAGE_NUMBER>1</PAGE_NUMBER>
    <LIST_G_LINE>
         <G_LINE>...</G_LINE>
         <G_LINE>...</G_LINE>
    </LIST_G_LINE>
    </G_PAGE_NUMBER>
    <G_PAGE_NUMBER>
    <PAGE_NUMBER>2</PAGE_NUMBER>
    <LIST_G_LINE>
         <G_LINE>...</G_LINE>
         <G_LINE>...</G_LINE>
    </LIST_G_LINE>
    </G_PAGE_NUMBER>
    <G_PAGE_NUMBER>
    <PAGE_NUMBER>3</PAGE_NUMBER>
    <LIST_G_LINE>
         <G_LINE>...</G_LINE>
         <G_LINE>...</G_LINE>
    </LIST_G_LINE>
    </G_PAGE_NUMBER>
    </LIST_G_PAGE_NUMBER>
    </REPORT>
    For this, I created 2-pages RTF template and using the Word Page Setup feature:
    1. First page setup is legal size (go to Page Setup, Paper tab, choose Letter and choose Apply to "Whole Document").
    The first page has the following XMLP tag:
    <?for-each: G_PAGE_NUMBER?>
    <?if: PAGE_NUMBER=1?><?call:body?><?end if?>
    <?end for-each?>
    <?template:body?>
    for-each loop that prints lines in a tabular format
    <?end template?>
    2. Second page setup is letter size (go to Page Setup, Paper, choose Letter and choose Apply to "This point forward").
    <?for-each: G_PAGE_NUMBER?>
    <?if: PAGE_NUMBER>1?><?call:body?><-- Ctrl-Break to insert a page break here --> <?end if?>
    <?end for-each?>
    It almost worked, except there is a blank page printed at the end. How do I remove the blank page? I have tried to use <?split-by-page-break:?> instead of the Ctrl-Break, but it did not seem to work (there is no page break happening at all).
    I think the extra page is due to the multiple page nature of the RTF template. Is there a way to control the page size through XMLP tag (or XSL-FO). With that, I can try having a single page template and put the page size control within the XMLP / XSL-FO tag and hope that the extra blank page at the end will go away. Can someone please help?
    Thank you!

    Sorry for the typo in my previous post... I meant Ctrl-Enter (not Ctrl-Break).

  • Dock size keeps changing?

    I always set dock size the smallest. But it keeps changing so that it's slightly bigger than the smallest. Why is it changing all by itself?

    I guess no one knows.

  • Mail Signature: image size keeps changing to fit window

    When adding a logo image to a signature in mail, the image is not remaining the same size, it changes in size semingly to fit the width of the window that the email happens to be in. Mostly the image is showing larger than the window itself. We are having this problem on imac (snow leopard) and brand new macbook pro (mountain lion). I have tried using PNG and JPEG files but both have the same problem. Older signatures (2 years old) show the image correctly keeping it the same size. Any advice muchly appreciated : )

    I worked it out in the end - I had 2 things too big in my image settings; the canvas size (which was 14cm long!) and he DPI (which was 300dpi) I have since changed to approx 8cm long and 100DPI and it now displays the logo in the signature without increasing the size of it to fit the size of the window. My only issue now is trying to get the image to still show in the reply thread, so that when you look down the email conversation you can see the logo in each of the previous email signatures. This one is stumping me!

  • Mail Window Size Keeps Changing

    I've had this erratic bug ever since upgrading to snow leopard:
    I generally keep mail open, and just have the window closed, and let DockStar do some work in terms of notifications.
    Problem is that my window size keeps on changing. When I click on the mail icon to open it up (I always resize to full screen), the mail program opens up in a very small window, probably about 500x600. Sometimes it opens in full screen as I want, other times it opens to this minimized view.
    It is very hard to exactly reproduce, but happens probably 1/4 to 1/5 of the time at least.
    The problem with this is that it also resizes the left panel so EVERY TIME I open it up, I have to resize both the window and the left bar panel.
    I found a complaint that sounded similar that had the user remove the preference file, then recreate it, but this hasn't solved the problem.
    Anyone else have this problem? Anyone know how to fix it?!?!

    Here's something I've noticed:
    1. When I uninstalled Dockstar, all problems went away. There's definitely something going on here.
    2. When I reinstalled Dockstar, I am now only having problems with Mail remembering that one of my mailboxes is set to "organize by thread." (I had this problem before in addition to the window resizing). However, the window resizing problem seems to be gone (for today, at least).
    Here's what's different:
    1. I installed GrowlMail after they updated to a 64bit preference pane. (Not sure how this would impact it, but who knows...)
    2. Last time, I just installed the newest copy of Dockstar over the old one. This time, I uninstalled the old one and reinstalled Dockstar cleanly.
    Do you feel like verifying if this is true for you too?

  • How to select page size and fit to page size?

    i am reading documentation here and feeling like a total dolt.
    can someone please remind me how i get my spreadsheet to print to my second printer and to get it to print in tray 1 with the 11 x 17 paper and how i get the spreadsheet to scale to fit this page size?
    i can't figure out if i am supposed to select the paper size first in the PRINT dialog but if i do this i can't figure out how to scale it and if i scale it i can't figure out how to get it off of 8 x 11 paper.
    oh the conundrums in mac print dialogs ; )
    tia

    hi wayne.
    i think you have a level of expertise with this software that let's you answer a question in a way that i don't understand. either that or perhaps as a new user my questions are not clear to you.
    can you tell me if it is possible to create a SETTING that will let me open a document that is SENT TO ME so that i don't have to run through all these steps just to do what i am asking to do in the title of this post? i mean, i am going to print this explanation out so i can refer to it in the future but i don't want to have to go through all these steps every time someone sends me a document.
    i also don't want to have to ask them to format the document as a pdf at 11 x 17 and 12 x 18 every time they send me something.
    does that question make sense?
    AFAIK your answer is indicating that i can set up a TEMPLATE that will let me /create/ new documents by using this template and what i am asking is if there is a way to print a document to 11 x 17 or to 12 x 18 with PRESETS as i do in Preview....
    can you help?
    THANKS!

  • Why does the character size keep changing to extreme small on the home page?

    With the new Firefox downloaded the character type changes to extremely small print every time I go away from the home page. I then have to reset it to larger print. With old Firefox the print size remained as I set it all the time.

    You didn't restore the device as new before you began using it.  Do so now, and use your own Apple ID & password from now on.
    Go to Settings > General > Reset > Erase All Content & Settings. 
    Then, in the Setup Assistant, use only your own information.

Maybe you are looking for