Very basic user, simple question (i think)

Hi there,
Very new to dreamweaver, im making a website at the moment, what i dont understand is i have a set template, which i have used for about 6 pages within the website.  On all the pages it is very zoomed in when i preview it in chrome, apart from one page, this page looks perfect, its in perspective and everything isnt too large like on the others.  Is there a way i can make them all follow this one?
Nevermind that, sorted that
How do i set the zoom of the page, so when anyone goes onto the page it appears in the correct zoom, rather than far too zoomed in like it does now

Newtimething wrote:
Nevermind that, sorted that
How do i set the zoom of the page, so when anyone goes onto the page it appears in the correct zoom, rather than far too zoomed in like it does now
Not a clue what your'e talking about. Is the browser set to zoomed by default? Sometimes it can be set in the last position you use it at so you need to re-set it, that' a possibility

Similar Messages

  • A very simple question (I think)

    My school has purchased some mac minis to use in our science lab, and now I want to get some very cheap monitors as we have a limited budget. I have some very basic questions that some experienced users could help me with:
    1. Could I use a TV monitor and connect via the HDMI input?
    2. What are the drawbacks when connecting a VGA monitor via the HDMI or mini connector?
    3. Would spending a bit more and getting a DVI capable monitor connected by the supplied "dongle" be best?
    4. What are the best brands of monitor?
    Many thanks,
    Geoff

    Well...
    1. If the TV has HDMI input, absolutely. Your main concern is the level of compatibility with a 'computer type' HDMI input, to avoid overscan/underscan issues.
    2. You can not connect VGA to HDMI without a device converting the signal from digital to analog, and such would cost much more than its worth. The only way to connect VGA avoiding compatibility issues is via the Mini Displayport with the correct dongle from Apple.
    3. I don't see any special advantage to getting a DVI capable computer monitor, over using an HDTV with HDMI or a computer monitor with HDMI. Basically you just need to find whatever display supports the input best as you need, at the best price.
    I won't really answer 4 because there's a lot of opinion in that.

  • A very basic editor related question

    Dreamweaver is considered a versatile & matured HTML editing tool, but (surprisingly) I could not find a very basic HTML editing facility in Dreamweaver (which is found in some free tools like Aptana Studio).
    In the code editor, if I click on a HTML (starting) tag, the editor should highlight the end tag, but the Dreamweaver editor does not do that? Am I missing anything?
    (I am using Dreamweaver CS3)

    In Code View you have some icons on the left side of your screen.  These can be used to expand and collapse sections of code for easier viewing.
    < > Select Parent Tag.  See screenshot.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Simple question I think ( for the expert users of this group)

    In a tabular layout form, when I insert a record, I want a database item, for example b1.aa ( b1 is the database block) to begin with 1( if there are no records inserted yet) and increases automatically, like a sequence.
    1,2,3, 4 ....
    how can I do this?
    in a when - new item instance trigger maybe?
    where? on the block or on the item?
    and which is the right code?
    Thank you all

    Hi Champion
    place ur code in when- new- record- instance at block level and increment it with the value required.
    Thank you
    Sasi

  • OAM 10g - Simple question (I think)

    Hey guys, I want to run something by you to see if I'm missing something critical. What I'm trying to do is fairly simple...
    I want 2 login forms for the same webpage, depending on which hostname is used.
    internal.mydomain.com
    external.mydomain.com
    both of these point to an IIS box, which is configured to receive on *:80.. no hostheaders defined.
    Originally, there was only the internal.mydomain.com and that is all setup and working. Accessing http://internal.mydomain.com/secret brings up my "Custom Internal Form".
    I want to add the ability so that when http://external.mydomain.com/secret is acccessed, it brings up my "Custom External Form".
    I have set up a new Host Identifier with external.mydomain.com
    I have copied the policy domain to "My Policy - External" and set it to the new Host Identifier, and specified to use Basic Over LDAP (as a quick test, will create the actual form later)
    When I access external.mydomain.com/secret I keep getting the "Custom Internal Form".
    When I perform an Access Test within oam to the same URL, it shows the correct ("My Policy - External" ) policy domain in the evaluation result, aka.
    This tells me that OAM is configured correctly, but the WebGate isn't reporting properly the host header used.
    Any ideas? I would very much appreciate any insight or suggestions.
    Thanks very much

    Hi Alex,
    Couple of things:
    1. Please check if there is any proxy configured in external.domain.com to route requests to internal.domain.com
    2. Is Login page residing in same webserver as protected page? If so, it will be different for internal and external domains as it will be seperated by a firewall. I would configure a single authentication scheme without specifying anything in challenge redirect field so that Login page will be thrown from the webserver where it is called for secured page.
    3. Please check whether you are able to access login pages of both external and internal domains directly and check for any errors in webserver logs.
    Please post the results.
    Hope this helps!
    -Mahendra

  • A relatively simple question ( I think)

    I'm pretty new to java. I've read a few books and been practicing the basics, and now I'm attempting to learn a bit more through the creation of a simple game. I've been able to get a lot of the groundwork down, however, I'm having trouble figuring out just how to do one of the simple things that I need.
    This game is grid based, and each time a sprite moves it moves a uniform distance of one tile (around 20 pixels). I need to set it up, however, so that the characters don't just "pop" to each location, but that they actually use their walk animation to travel one square's worth of distance.
    I'll post the simple code I tried, along with my thoughts on why it doesn't work, and then I'd like to know if I'm just going about it all wrong, and I should try another method, or there is an error in my code. My comments in the code explain what's going on (or supossed to be).
    public void moveLeft() { //this method is called when the left arrow is pressed
        moving(); //this is a method that simply sets the sprite's animation to a walk loop and changes a couple status variables
        int x = getXPosn(); //get the current x position
        int y = getYPosn(); //get the current y position
        int newx = x - 20; //newx is where I want the sprite to end up
        for (int n = x; n > newx; n--) { 
            setPosition(n, y);
        stopLooping(); //stops the looping animation
    }Now that seems pretty straightforward to me. I set the sprite to its walking animation. I get the current position, and tell it to go 20 pixels to the left, by decrementing 1 pixel at a time. Then, when it gets there, stop looping the animation.
    However, what I end up with is the same as if the for loop is nonexistant and I just used setPosition() to "warp" the character to the new spot. The animation never takes place, and the sprite doesn't "slide" along the screen like I want. Is this because the for loop just processes so quickly from x to (x-20) that its unnoticable? And if so, how do I slow it down so that I can see this animation?
    Perhaps I'm going about it all the wrong way, and there is a better method for getting at what I want. Any help would be greatly appreciated. For what its worth, I do know the moving() method,looping, stopLooping(), setPosition(), and all of that works. When I set it so that holding down an arrow key moves the sprite, it works fine. The sprite moves around, with the walk animation as long as the key is being pressed. That's just not what I need to do here. I just want it to walk a fixed distance, with its animation, from a key press.

    well, it may have bloated my code a bit, but it works. I believe that once I get more of the game elements in place, I'll be able to simplifiy it, but I'm trying to take my time and get each part working solidly before adding more.
    //I have a method that updates my sprite's x,y position each time through the gameloop by simply doing
    locx += mx
    locy += my
    //where locx, locy is the current location and mx, my is the amount of movement (either positive or negative);
    //Then, I needed 2 methods to get it to stop when I wanted.
    public void stepLeft() {
           int x = getXPosn(); //returns the value of the current x position
           moving();
           setStep(-1,0); //this method sets the movement amount each update- (-1,0) means move left 1 pixel on the x axis each update
           moveLeft((x - 20)); //sends the value of where I want the sprite to end up when I'm finished to the other method I created
    public void moveLeft(int x) {
           while (getXPosn() > x) { //this loop runs while the x location of the sprite is greater than the location I want it to end up at.
               isStill = false; //this is just a boolean identifier
           stopMove(); //A method that just stops the looping animation and resets the movement to (0,0)
    }I tried to get it all in one method, but was having trouble, with using getXPosn() in the same method that I needed to check getXPosn() later. It kept creating infinite loops, because (getXPosn() - 20) would change based on the sprite's movement. So my workaround was to send it to another method for the loop.
    As I said, I think this is a little bloated for what the code will be when I'm finished. I need to turn my background into a grid and I'm going to define each tile at some point. Then, I can go back and alter this code so that it just checks if its going into the boundaries of a new tile, rather than needing to use so many methods.

  • First time computer builder - simple question(I think)

    Im putting together my first computer so far without much problem
    This is hardware I have
    380W Antec Power
    865 neo2 board
    2.8 p4 processor
    2x512 mb corsair memory
    lite on cd-rw
    plextor dvd-rw
    200gb western digital special additon hard drive.
    (which came with ata ultra controller card)
    My question is this:
    How should I set up my two optical drives and the hard drive on my available ide connections. Of course I have the two regular ide ports 1&2 and I have the ide3 next to the serial ata ports. I also have the ata ultra controller card plugged into one of the pci ports which gives me two more ide ports. I ve read through the forum listings and have not came across a simple description of how I should configure my hard drive and optical drives. How should I hook up these drives and what settings should I use (master/slave). Any help would be appreciated If it seems like I'm asking dumb questions it's just because I'm real new at this and want every thing to be perfects. thanks

    IMHO
    I would take out ata controller card. Your MB has enough....
    Primary IDE - master  - your WD harddrive
    Primary or Secondary IDE - slave - you lite on cd-rw
    Secondary IDE - master - plextor dvd-rw
    If you will install XP + service pack 1 your harddrive should be OK.
    PS - Just finish to build  about the same config....
    But I made my dvd-rw - external
    added later AFAIK Your 3rd IDE will not support optical drives.
    It is possible to put bootable harddrive on third IDE, but I it is not very simple
    and have no big advantages

  • Very basic SQL/XML question

    I'm using the following environment:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    However, I don't think my environment is the issue.
    I'm trying to get output which looks like this from a simple table:
    <MAXDOMAIN action="S">
         <DOMAINID key="true">domainid_data</DOMAINID>
         <SYNONYMDOMAIN type="relationship" action="AU" >
              <VALUE key="true">value_data</VALUE>
              <MAXVALUE>maxvalue_data</MAXVALUE>
              <DESCRIPTION>description_data</DESCRIPTION>
              <DEFAULTS>defaults_data</DEFAULTS>
         </SYNONYMDOMAIN>
    </MAXDOMAIN>The table looks like this
    Name                           Null     Type          
    DOMAINID                       NOT NULL VARCHAR2(30)   
    DESCRIPTION                             VARCHAR2(50)   
    DOMAINTYPE                              VARCHAR2(5)    
    MAXTYPE                                 VARCHAR2(5)    
    LENGTH                                  VARCHAR2(5) The real question is how do I get an element with attributes to also have content.
    <DOMAINID key="true">domainid_data</DOMAINID>and
    <VALUE key="true">value_data</VALUE>I'm not sure if I'm syntactically challenged or just not using the correct tags.
    If I try to just generate the first two tags, forgetting the following nesting, I'm OK, as long as I don't try to assign attributes to the DOMAINID tag:
    SELECT  XMLELEMENT
    ("MAXDOMAIN",XMLATTRIBUTES('S' AS "action"),XMLELEMENT(NAME DOMAINID, "DOMAINID")
    AS "RESULT"
    FROM FAC_MAXDOMAIN;This works and is pretty trivial.
    <MAXDOMAIN action="S"><DOMAINID>AIRFLOWTYPE</DOMAINID></MAXDOMAIN>
    etc, etc...However, this:
    SELECT  XMLELEMENT
    ("MAXDOMAIN",XMLATTRIBUTES('S' AS "action"),XMLELEMENT(NAME DOMAINID, "DOMAINID",XMLATTRIBUTES('true' AS "key"))
    AS "RESULT"
    FROM FAC_MAXDOMAIN;Yields an ORA-00907: missing right parenthesis error.
    Any ideas? maybe a good primer on SQL/XML might be the best solution...
    TIA,
    Paolo

    Very nice for a first post in terms of data included and formatting.
    It took me a few minutes to see it, but the simple answer is you are putting the XMLAttributes in the wrong location. See the XMLElement spec at http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions220.htm#SQLRF06168 that shows XMLAttributes comes between the identifier and value. So that means you should have written it as
    Connected to Oracle Database 11g Enterprise Edition Release 11.1.0.6.0
    SQL> WITH FAC_MAXDOMAIN AS
      2  (SELECT 'domainid_data' domainid, 'dscr' description,
      3          'type' domaintype, '10' maxtype, '5' length
      4     FROM dual)
      5  -- Using WITH so didn't have to create your table locally
      6  SELECT  XMLELEMENT("MAXDOMAIN",
      7            XMLATTRIBUTES('S' AS "action"),
      8            XMLELEMENT(NAME DOMAINID, XMLATTRIBUTES('true' AS "key"), "DOMAINID")
      9          )
    10  AS "RESULT"
    11  FROM FAC_MAXDOMAIN;
    RESULT
    <MAXDOMAIN action="S"><DOMAINID key="true">domainid_data</DOMAINID></MAXDOMAIN>

  • Very basic initial configuration question.

    Hi.
    I replaced a Catalyst 2960G for a C2960X-24-L in a network where there are already five switches.
    I have no idea how to assign it an ip : is there anyone here willing to explain that in  very simple way ?
    I tried plug it in the existing network, but didn't work.
    I'm not the one whom installed the network, and I'm doing that to help.
    Thank you.
    Pierre

    Also if you are adding a new sw to the network i recommend you to reset the vtp in that sw (if your network has it.) if you are not sure just do "vtp mode transparent" "vtp mode client" assuming that you are replacing a client sw.
    Then you should verify before connecting to the network:
    - type of stp that your network is running
    - if you have vtp check the config and use the same domain, version, password so the sw gets the vlans from the 
    - when you have all the vlans set in the sw then add the interfaces to the vlans
    - be sure that you are not replacing the root sw.
    Maybe there are others things to check but thats what comes to my mind now
    Regards

  • Very Basic ISA 2006 Question

    I am the first to admit that I don't really know anything about ISA....so please forgive me if this question is too stupid for words.....(and if a particular MVP with the initials 'AF' is reading this, then yes, I know I am incredibly stupid and shouldn't have
    anything to do with networks, and me posting to these forums is an offence to your sensibilities etc etc, so spare me the rant this time...)
    Anyway, I was under the impression that with ISA server you could have a number of web sites all running off the same IP address. For example, we have 2 websites (site1.company.com and site2.company.com) and 1 external IP address. We have DNS records set up
    for each of these sites, and they both point to our external IP address. What I thought happened (in my incredibly uneducated mind) was this
    1. User types www.site1.company.com into their browser, which resolves to our external IP address on our firewall. Our firewall forwards this request to our ISA s2006 server. The ISA server reads the 'site1.company.com'
    in the request and forwards the traffic to webserver1.
    2. User types www.site2.company.com into their browser, which resolves to our external IP address on our firewall. Our firewall forwards this request to our ISA s2006 server. The ISA server reads the 'site2.company.com'
    in the request and forwards the traffic to webserver2.
    Are my assumptions correct, or do we need a public IP address for every site we wish to publish?

    Hi,
    you are correct. It is possible to publish multiple websites with one public IP address:
    http://support.microsoft.com/kb/838252/en-us
    http://blogs.technet.com/b/isablog/archive/2008/06/19/another-look-at-web-publishing-part-ii-host-headers-with-ssl-and-certificates.aspx
    regards Marc Grote aka Jens Baier - www.it-training-grote.de - www.forefront-tmg.de - www.galileocomputing.de/3570

  • Simple question I think, add JPanel to JScrollPane

    I would imagine that for anyone with experience with Java this will be a simple problem. Why can't I add a JPanel to a JScrollPane using myScrollPane.Add(myPanel); ?? it seems to get hidden...
    This works correctly:
         //Create a panel
         JPanel panel = new JPanel(new FlowLayout());
         //Make it pink
         panel.setBackground(Color.pink);
         //Make it 400,400
         panel.setPreferredSize(new Dimension(400,400));
         //Create a Scrollpane
         JScrollPane scrollPane = new JScrollPane(panel);
         //Make it 300,300
         scrollPane.setPreferredSize(new Dimension(300,300));
         //Create a JFrame
         JFrame frame = new JFrame("Test Scrollpane");
         frame.setLayout(new FlowLayout());
         //Set close operation
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         //Set its size
         frame.setSize(600,600);
         //Add Scrollpane to JFrame
         frame.add(scrollPane);
         //Show it
         frame.setVisible(true);
    This doesnt:
         //Create a panel
         JPanel panel = new JPanel(new FlowLayout());
         //Make it pink
         panel.setBackground(Color.pink);
         //Make it 400,400
         panel.setPreferredSize(new Dimension(400,400));
         //Create a Scrollpane
         JScrollPane scrollPane = new JScrollPane();
         scrollPane.add(panel);
         //Make it 300,300
         scrollPane.setPreferredSize(new Dimension(300,300));
         //Create a JFrame
         JFrame frame = new JFrame("Test Scrollpane");
         frame.setLayout(new FlowLayout());
         //Set close operation
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         //Set its size
         frame.setSize(600,600);
         //Add Scrollpane to JFrame
         frame.add(scrollPane);
         //Show it
         frame.setVisible(true);

    rcfearn wrote:
    I would appreciate it you could read the sample code, I am asking the question as to why I have to do this? For structural reasons I don't want to have to add the JPanel during instatiation of the JScrollPane...Please read the [jscrollpane api.|http://java.sun.com/javase/6/docs/api/javax/swing/JScrollPane.html] To display something in a scroll pane you need to add it not to the scroll pane but to its viewport. If you add the component in the scroll pane's constructor, then it will be automatically added to the viewport. if you don't and add the component later, then you must go out of your way to be sure that it is added to the viewport with:
    JScrollPane myScrollPane = new JScrollPane();
    myScrollPane.getViewport().add(myComponent);

  • Context help (please help, simple question i think)

    Hi, on my webserver, I have a nested tag that goes:
    <Host name="www.mydomain.com">
    <Alias>domain.com</Alias>
    <Context docBase="/home/domainacct/public_html/jsp" path="/jsp" reloadable="true">
    </Context>
    </Host>
    When I use this setup, JSP works! I can access any http://www.mydomain.com/jsp/*.jsp
    But I don't want JSP files to be loadable only from the /jsp directory, as I would like
    to be able to do:
    <Host name="www.mydomain.com">
    <Alias>domain.com</Alias>
    <Context docBase="/home/domainacct/public_html" path="" reloadable="true">
    </Context>
    </Host>
    so that I can access jsp files like: http://www.mydomain.com/test.jsp
    But when I try that setup it doesn't work.
    Do you guys know how I can do this? Thanks.

    nope u can't do that i far as i know.
    the context docBase should be the actual path to the folder. so if your webapp is in C:\TOOLS\webapps\Development than ur docBase is Development....like the root directory for example.
    the context tag as far as i know cannot be used for what u want 2 do. i don't think u can in Java.

  • A simple question I think

    I shot my movie on a Canon XL-1 which is 29.97 fps. I was turned down by a distributor because he told me 30 fps is a hard sell in today's market.
    I did not tell him the movie was shot 30fps, but he knew.
    If I had put my completed movie through cinema tools and exported a 24 fps movie, would it have made a difference?
    Thank you.

    24 fps imaging looks different from 30 fps. 30 frames/sec will look smoother and more 'real'. Think video news.
    24 fps (the frame rate of film) has a slight jerkiness to it as there is a longer time between each frame. To some, this specific image rhythm says "film".
    Graeme Nattress makes a series of filters that will tweek the gamma as well as do the frame rate conversion from 27.97 NTSC to 24p.
    www.nattress.com - film look.
    Good luck.
    x

  • Unicode - Simple Question (I think)

    The following code is dynamically generated and executed.  I don't know what table I'm going to get until run-time when I gen this code.  I keep getting the following run-time error:  UC_OBJECTS_NOT_CONVERTIBLE.  Please propose code that works in a Unicode system.  Note that I need to pass the internal table "G" back through a function module interface so I need to have it reference a DDIC object statically.
    REPORT ZDYN1.
    DATA : BEGIN OF G OCCURS 0,
             DATA(5000),
           END OF G.
    PERFORM GET_DATA TABLES g .
    FORM GET_DATA TABLES PASSED_TAB STRUCTURE g.
      TABLES: VBAK.
      FIELD-SYMBOLS <TTT> TYPE ANY.
      ASSIGN VBAK TO <TTT>.
      select distinct * INTO <TTT>
      FROM VBAK
      WHERE
      VBAK~VBELN EQ '0105045404'.
        PASSED_TAB = <TTT>.
        APPEND PASSED_TAB.
      ENDSELECT.
      LOOP AT PASSED_TAB.
        WRITE:/ PASSED_TAB.
      ENDLOOP.
    ENDFORM.                    "GET_DATA

    you wanted to select records from a table (table name known only at runtime - may be a user input) and pass it to a generic itab? right ? if so check out the code of RFC_READ_TABLE function module
    particulary from
    read data from the database and copy relevant portions into DATA
    Regards
    Raja

  • Very quick and simple question about a simple sum going wrong.

    Ive noticed that im having lots of ocurrences where my maths goes wrong - usually i trace this to ints multiplying doubles and stuff , or its in degrees not radians .
    But this one is too simple to seem to cause problems :
    screenY = 180 + ( 420 - (( 420 / 2200 ) * xE ) );
    heres the code line which does the calculation, and for a particular loop it
    ran as xE = 223 .
    xE is an int by the way.
    For some reason this code always produces screenY = 600 ,
    which should only be the case if xE = 0 .
    any suggestions as to how i should help the VM get it right?
    thanks in advance guys.

    Ive noticed that im having lots of ocurrences where
    my maths goes wrong - usually i trace this to ints
    multiplying doubles and stuff , or its in degrees
    not radians .
    But this one is too simple to seem to cause problems
    screenY = 180 + ( 420 - (( 420 / 2200 ) * xE ) );
    heres the code line which does the calculation, and
    for a particular loop it
    ran as xE = 223 .
    xE is an int by the way.
    For some reason this code always produces screenY =
    600 ,
    which should only be the case if xE = 0 .It happens because in integer division 420/2200 is always equal to zero. So, regardless of the value of xE, you're adding 420 + 180, which is 600.
    any suggestions as to how i should help the VM get it right? Yes:
    double value = 180.0 + (420.0 - ((420.0/ 2200.0)*xE));
    screenY = (int)value;You can simplify all this, of course. Why not do that 420/2200 = 0.19090909... calculation once and just substitute the constant value?
    %

Maybe you are looking for

  • 11gR2 Grid installation error

    Hi All, I am currently trying to install the 11gR2 grid infra for cluster , First i ran the cluvfy i got the issue " exectask could not be retrieved from node "saixlab52" " then i tried to started while installing i am getting "Internal error" and in

  • I was working with my iPad with 1% battery and it turned off....

    I was working with my iPad with 1% battery and it turned off . I connected it to USB cable but my iPad wants to turns  on with 1% battery but after a minute it turns off again.it happend for more than10 times.Please help me .My iPad is the 3rd Genera

  • HP Pavilion dv9700 screen is blank - uses NVIDIA GeForce 8400M GS

    My screen ghosted for a minute then went blank.  The screen is totally blank, but I am able to connect another external display device, and that works fine.  Is this fixable? Steve 

  • Indesign creates *.wxml files Indesign CS5

    Hi All is in the title. Every time i'm opening an indd file, there is a file created with the same name but with an *.wxml extension file. This file's never disapears when i close the *.indd file or the software. Thanks you for your help.

  • Dynamic Text for Recurring Documents

    Hello all, I want to know how to use dynamic texts for Document Header field in recurring documents. We run the recurring program each month (F.14). I would like the document header text to have the dates of that month eg "01/06/08 - 30/06/08". If we