How can i make my webpage has login and user has account

i have a project to do, i need user to sign up and have user account where they can check their data

There is nothing built into DW that can do this for you.
This type of thing requires a fair amount of server scripting and database stored content to do correctly (if you are planning to have different content per user or user editable content). Unless you are proficient with the scripting available on the server you're using (ask your hosting company what server scripting languages you have available to you), the best option would be to hire someone to do it for you or find/purchase a pre-made third party "user registration and log-in system".

Similar Messages

  • My husband uses adobe cs5. The clone tool isn't working and after resetting the tools adobe bridge now goes to picasa. How can we make the clone tool work and have bridge go to cs5 not picasa?

    My husband uses adobe cs5. The clone tool isn't working and after resetting the tools adobe bridge now goes to picasa. How can we make the clone tool work and have bridge go to cs5 not picasa?

    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • How can I make a survey automatically identify the user in the results?

    How can I make a survey automatically identify the user in the results (so that it won't be anonymous)?

    I am not sure what information to provide.  Here is what I am trying to do.  I am trying to create an HR questionnaire with multiple choice questions and several multiline textboxes to capture comments.  I want to send it out by email address and/or embed the questionnaire somewhere on the company's intranet website.  But we don't want the questionnaire to be anonymous. If someone makes a particular comment, we want to be able to communicate with the person who made that particular comment.  How would we be able to trace the person? By email address, or by user ID?

  • How can I Make just one color pop and the rest a black and white photo??

    How can I make just one color pop and the rest of the photo black and white?? I'm using iphoto...

    3rd party image editors like Photoshop Elements for Mac can do it:
    Click to play video screenshot
    Or use it to keep an object in color and the rest B/W.
    Click to view full size
    OT

  • How can I make podcasts play continuously. And Why do I have to sign in to itunes twice every time I open it?

    How can I make podcasts play continuously. And Why do I have to sign in to itunes twice every time I open it?

    its really annoying since nobody uses my computer and its password protected.... But like sometimes it does happen where i have to put it in, and other times it doesn't

  • How can I make the fusion between CRM and SD?

    I´m working in a company in Spain and I want to know how can I make a fusion between CRM and SD? It is posible? The company whants to move all the information from CRM to SD and work in the future only with SD departament. So all the database needs to translate at SD and SD departament use and work with twice module in one module. I haven´t idea if I can make this fusion, so please help me!!!!!! Thank you so much!!!!

    Hi
    Can you please more specific on following points. That will help to give you more input from all SDN users perspective.
    1. What are the scenarios currently been used in CRM?
    2. What are all TRANSACTION TYPES are used in CRM system?
    3. Any development is done in CRM system which is important from BUSINESS PROCESS perspective?
    4. Is there any MASTER DATA used in CRM, which will then replicate to ECC and then used in ECC also?
    5. Are the middleware settings are done in CRM?
    6. Last  but not the least why your organisation does not want to USE CRM, which is one of the BEST ERP Package provided by SAP.
    Regards

  • How can I make this join in ADF and make CRUD operation in this

    How to make this relation in ADF
    I have table employees and this is my master table
    Table Name: Employees
    Columns:
    Employee_id(PK)
    Employee_name
    Employee_Salary
    I have a child table that is called related employee that contains employees related to this employee
    Table_name: Related_Employee
    Columns:
    Related_Employee_Table_Id(PK)
    Employee_id(FK)
    Related_Employee_Id
    When I open employee id = 100 for example and add related employee id = 10
    this is added with no problem but the requirement is that when I open employee 10 I find employee id 100 as related employee
    How can I make this scenario.

    The best way to understand this is to look at an example. If you are using an oracle database such as XE for you have a schema called hr. This shema has a number of tables two of which are departments and employees. a department has multiple employees correct. So in your example a employee may be related to x # of other employees perhaps. A very similar scenario as that in the hr Schema. If you don't have an Oracle XE database, download one from here -> http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    Create Business Components off of the Departments and Employees schema and you'll see that due to the db design, you get what you're talking about for free (i.e. the join). Thus, you have the master-detail relationship you're looking for. For a quick tip, here is the relationship between departments and employees in the hr schema via a create script that you can exam with data inserts included:
    SET SQLBLANKLINES ON
    CREATE TABLE DEPARTMENTS
    DEPARTMENT_ID NUMBER(4, 0) NOT NULL
    , DEPARTMENT_NAME VARCHAR2(30 BYTE) NOT NULL
    , MANAGER_ID NUMBER(6, 0)
    , LOCATION_ID NUMBER(4, 0)
    , CONSTRAINT DEPT_ID_PK PRIMARY KEY
    DEPARTMENT_ID
    USING INDEX
    CREATE UNIQUE INDEX DEPT_ID_PK ON DEPARTMENTS (DEPARTMENT_ID ASC)
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 2
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    ENABLE
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 1
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    CREATE TABLE EMPLOYEES
    EMPLOYEE_ID NUMBER(6, 0) NOT NULL
    , FIRST_NAME VARCHAR2(20 BYTE)
    , LAST_NAME VARCHAR2(25 BYTE) NOT NULL
    , EMAIL VARCHAR2(25 BYTE) NOT NULL
    , PHONE_NUMBER VARCHAR2(20 BYTE)
    , HIRE_DATE DATE NOT NULL
    , JOB_ID VARCHAR2(10 BYTE) NOT NULL
    , SALARY NUMBER(8, 2)
    , COMMISSION_PCT NUMBER(2, 2)
    , MANAGER_ID NUMBER(6, 0)
    , DEPARTMENT_ID NUMBER(4, 0)
    , CONSTRAINT EMP_EMP_ID_PK PRIMARY KEY
    EMPLOYEE_ID
    USING INDEX
    CREATE UNIQUE INDEX EMP_EMP_ID_PK ON EMPLOYEES (EMPLOYEE_ID ASC)
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 2
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    ENABLE
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 1
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    CREATE INDEX DEPT_LOCATION_IX ON DEPARTMENTS (LOCATION_ID ASC)
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 2
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    CREATE INDEX EMP_DEPARTMENT_IX ON EMPLOYEES (DEPARTMENT_ID ASC)
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 2
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    CREATE INDEX EMP_JOB_IX ON EMPLOYEES (JOB_ID ASC)
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 2
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    CREATE INDEX EMP_MANAGER_IX ON EMPLOYEES (MANAGER_ID ASC)
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 2
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    CREATE INDEX EMP_NAME_IX ON EMPLOYEES (LAST_NAME ASC, FIRST_NAME ASC)
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 2
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_EMAIL_UK UNIQUE
    EMAIL
    USING INDEX
    CREATE UNIQUE INDEX EMP_EMAIL_UK ON EMPLOYEES (EMAIL ASC)
    LOGGING
    TABLESPACE "USERS"
    PCTFREE 10
    INITRANS 2
    STORAGE
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    BUFFER_POOL DEFAULT
    ENABLE;
    ALTER TABLE DEPARTMENTS
    ADD CONSTRAINT DEPT_LOC_FK FOREIGN KEY
    LOCATION_ID
    REFERENCES LOCATIONS
    LOCATION_ID
    ENABLE;
    ALTER TABLE DEPARTMENTS
    ADD CONSTRAINT DEPT_MGR_FK FOREIGN KEY
    MANAGER_ID
    REFERENCES EMPLOYEES
    EMPLOYEE_ID
    ENABLE;
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_DEPT_FK FOREIGN KEY
    DEPARTMENT_ID
    REFERENCES DEPARTMENTS
    DEPARTMENT_ID
    ENABLE;
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_JOB_FK FOREIGN KEY
    JOB_ID
    REFERENCES JOBS
    JOB_ID
    ENABLE;
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_MANAGER_FK FOREIGN KEY
    MANAGER_ID
    REFERENCES EMPLOYEES
    EMPLOYEE_ID
    ENABLE;
    ALTER TABLE DEPARTMENTS
    ADD CONSTRAINT DEPT_NAME_NN CHECK
    (DEPARTMENT_NAME IS NOT NULL)
    ENABLE;
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_EMAIL_NN CHECK
    (EMAIL IS NOT NULL)
    ENABLE;
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_HIRE_DATE_NN CHECK
    (HIRE_DATE IS NOT NULL)
    ENABLE;
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_JOB_NN CHECK
    (JOB_ID IS NOT NULL)
    ENABLE;
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_LAST_NAME_NN CHECK
    (LAST_NAME IS NOT NULL)
    ENABLE;
    ALTER TABLE EMPLOYEES
    ADD CONSTRAINT EMP_SALARY_MIN CHECK
    (SALARY > 0)
    ENABLE;
    COMMENT ON TABLE DEPARTMENTS IS 'Departments table that shows details of departments where employees
    work. Contains 27 rows; references with locations, employees, and job_history tables.';
    COMMENT ON TABLE EMPLOYEES IS 'employees table. Contains 107 rows. References with departments,
    jobs, job_history tables. Contains a self reference.';
    COMMENT ON COLUMN DEPARTMENTS.DEPARTMENT_ID IS 'Primary key column of departments table.';
    COMMENT ON COLUMN DEPARTMENTS.DEPARTMENT_NAME IS 'A not null column that shows name of a department. Administration,
    Marketing, Purchasing, Human Resources, Shipping, IT, Executive, Public
    Relations, Sales, Finance, and Accounting. ';
    COMMENT ON COLUMN DEPARTMENTS.MANAGER_ID IS 'Manager_id of a department. Foreign key to employee_id column of employees table. The manager_id column of the employee table references this column.';
    COMMENT ON COLUMN DEPARTMENTS.LOCATION_ID IS 'Location id where a department is located. Foreign key to location_id column of locations table.';
    COMMENT ON COLUMN EMPLOYEES.EMPLOYEE_ID IS 'Primary key of employees table.';
    COMMENT ON COLUMN EMPLOYEES.FIRST_NAME IS 'First name of the employee. A not null column.';
    COMMENT ON COLUMN EMPLOYEES.LAST_NAME IS 'Last name of the employee. A not null column.';
    COMMENT ON COLUMN EMPLOYEES.EMAIL IS 'Email id of the employee';
    COMMENT ON COLUMN EMPLOYEES.PHONE_NUMBER IS 'Phone number of the employee; includes country code and area code';
    COMMENT ON COLUMN EMPLOYEES.HIRE_DATE IS 'Date when the employee started on this job. A not null column.';
    COMMENT ON COLUMN EMPLOYEES.JOB_ID IS 'Current job of the employee; foreign key to job_id column of the
    jobs table. A not null column.';
    COMMENT ON COLUMN EMPLOYEES.SALARY IS 'Monthly salary of the employee. Must be greater
    than zero (enforced by constraint emp_salary_min)';
    COMMENT ON COLUMN EMPLOYEES.COMMISSION_PCT IS 'Commission percentage of the employee; Only employees in sales
    department elgible for commission percentage';
    COMMENT ON COLUMN EMPLOYEES.MANAGER_ID IS 'Manager id of the employee; has same domain as manager_id in
    departments table. Foreign key to employee_id column of employees table.
    (useful for reflexive joins and CONNECT BY query)';
    COMMENT ON COLUMN EMPLOYEES.DEPARTMENT_ID IS 'Department id where employee works; foreign key to department_id
    column of the departments table';

  • An index of my desktop files appears in firefox. why is it there? does this mean my personal files are accessible from the internet? how can i make sure this goes away and stops?

    i am seeing and index of my personal files on firefox. what is this? why is it there? how can i make it go away? does this mean my desktop files are on the internet? can someone explain clearly and simply (i am not tech saavy at all) thank you

    This issue can be caused by an old bitmap version of the Helvetica or Geneva font or (bitmap) fonts that Firefox can't display in that size.
    Firefox can't display some old bitmap fonts in a larger size and displays gibberish instead.
    You can test that by zooming out (View > Zoom > Zoom Out, Ctrl -) to make the text smaller.
    Uninstall (remove) all variants of that not working font to make Firefox use another font or see if you can find a True type version that doesn't show the problem.
    There have also been fonts with a Chinese name reported that identify themselves as Helvetica, so check that as well.
    Use this test to see if the Helvetica font is causing it (Copy & Paste the code in the location bar and press Enter):
    <pre><nowiki>data:text/html,
    Helvetica<br><font face="Helvetica" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font><br>
    Helvetica Neue<br><font face="Helvetica Neue" size="25">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</font>
    </nowiki></pre>
    You should reset the network.http prefs that show user set on the about:config page.<br />
    Not all websites support http pipelining and if they do not then you can have issues with images or other problems.
    See also http://kb.mozillazine.org/Images_or_animations_do_not_load#First_steps

  • How can I make a slideshow with pictures and burn it to a dvd? what program to use?

    how can i make a slideshow with my pictures and then burn it to a dvd?

    Apple's builtin "iPhoto" application can do that easily.  Open iPhoto and click on "Help" at the top of the screen for assistance in creating it.
    Hope this helps

  • How can I make the webpage display the same on different sized screens?

    I have made a webpage, but it appears differently in different resolutions. I am in 1920x1080 and it appears fine on my screen, but anything smaller than that, the text is zoomed in more and it is not central.
    website can be found here: http://www.fitness4funswindon.net23.net/1_Index.html
    How do I get this webpage/site to appear in only one specific resolution?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Fitness4FunSwindon</title>
    <style type="text/css">
    #apDiv1 {
              position: absolute;
              width: 200px;
              height: 115px;
              z-index: 1;
              left: 154px;
              top: 69px;
    body {
              background-color: #007E8A;
              background-image: url(Images/background%20image.jpg);
              background-repeat: no-repeat;
    #apDiv2 {
              position: absolute;
              width: 361px;
              height: 68px;
              z-index: 2;
              left: 1009px;
              top: 311px;
              color: #FFF;
              font-size: 5em;
    #apDiv2 a {
              color: #FFF;
    #apDiv3 {
              position: absolute;
              width: 249px;
              height: 216px;
              z-index: 2;
              left: 1020px;
              top: 359px;
    #apDiv4 {
              position: absolute;
              width: 1375px;
              height: 173px;
              z-index: 1;
              left: 19px;
              top: 433px;
    </style>
    <style type="text/css">
    #apDiv5 {
              position: absolute;
              width: 200px;
              height: 115px;
              z-index: 2;
              left: 20px;
              top: 18px;
    #apDiv6 {
              position: absolute;
              width: 960px;
              height: 1297px;
              z-index: 3;
              top: 12px;
              background-color: #D9E052;
              border-top-style: solid;
              border-right-style: solid;
              border-bottom-style: solid;
              border-left-style: solid;
              border-top-color: #60F;
              border-right-color: #60F;
              border-bottom-color: #60F;
              border-left-color: #60F;
              margin-left: 400px;
              left: -108px;
              clip: rect(auto,auto,auto,auto);
              visibility: inherit;
              padding-left: 0px;
    #apDiv7 {
              position: absolute;
              width: 960px;
              height: 246px;
              z-index: 1;
              left: 0px;
              top: 0px;
    #apDiv8 {
              position: absolute;
              width: 963px;
              height: 134px;
              z-index: 2;
              top: 249px;
    #apDiv9 {
              position: absolute;
              width: 962px;
              height: 115px;
              z-index: 2;
              left: -2px;
              top: 246px;
    #apDiv10 {
              position: absolute;
              width: 960px;
              height: 127px;
              z-index: 2;
              left: 0px;
              top: 246px;
    .instructor {
              border-top-style: solid;
              border-right-style: solid;
              border-bottom-style: solid;
              border-left-style: solid;
              border-top-color: #000;
              border-right-color: #000;
              border-bottom-color: #000;
              border-left-color: #000;
    </style>
    <style type="text/css">
    #apDiv11 {
              position: absolute;
              width: 955px;
              height: 133px;
              z-index: 3;
              top: 419px;
              left: 5px;
              font-size: 30px;
              font-family: "Comic Sans MS", cursive;
              text-align: center;
              font-weight: bold;
              color: #000;
    #apDiv12 {
              position: absolute;
              width: 255px;
              height: 505px;
              z-index: 4;
              left: 31px;
              top: 709px;
    #apDiv13 {
              position: absolute;
              width: 334px;
              height: 156px;
              z-index: 5;
              left: 65px;
              top: 552px;
    #apDiv14 {
              position: absolute;
              width: 200px;
              height: 115px;
              z-index: 4;
    #apDiv15 {
              position: absolute;
              width: 372px;
              height: 348px;
              z-index: 4;
              left: 3px;
              top: 549px;
              background-color: #990;
    #apDiv16 {
              position: absolute;
              width: 957px;
              height: 110px;
              z-index: 4;
              top: 568px;
    #apDiv17 {
              position: absolute;
              width: 200px;
              height: 115px;
              z-index: 4;
    #apDiv18 {
              position: absolute;
              width: 508px;
              height: 587px;
              z-index: 4;
              top: 553px;
              left: 8px;
    #apDiv19 {
              position: absolute;
              width: 200px;
              height: 115px;
              z-index: 4;
    #apDiv20 {
              position: absolute;
              width: 412px;
              height: 481px;
              z-index: 5;
              left: 544px;
              top: 553px;
              font-family: Arial, Helvetica, sans-serif;
              font-size: medium;
    #apDiv21 {
              position: absolute;
              width: 378px;
              height: 129px;
              z-index: 6;
              left: 551px;
              top: 1042px;
    #apDiv22 {
              position: absolute;
              width: 200px;
              height: 115px;
              z-index: 4;
    #apDiv23 {
              position: absolute;
              width: 161px;
              height: 115px;
              z-index: 7;
              left: 333px;
              top: 775px;
    #apDiv24 {
              position: absolute;
              width: 921px;
              height: 107px;
              z-index: 4;
              left: 270px;
              top: 1213px;
              font-family: ravie;
              font-size: xx-small;
    #apDiv25 {
              position: absolute;
              width: 200px;
              height: 115px;
              z-index: 5;
    #apDiv26 {
              position: absolute;
              width: 1603px;
              height: 769px;
              z-index: 5;
    #apDiv27 {
              position: absolute;
              width: 349px;
              height: 157px;
              z-index: 5;
              left: 1320px;
              top: 37px;
    #apDiv28 {
              position: absolute;
              width: 948px;
              height: 95px;
              z-index: 8;
              left: 4px;
              top: 1190px;
              font-family: Arial, Helvetica, sans-serif;
    #text1 {
              width: 600px;
              margin-top: 300px;
    </style>
    <link href="mystyle.css" rel="stylesheet" type="text/css" />
    <link href="mystyle2.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #apDiv29 {
              position: absolute;
              width: 949px;
              height: 95px;
              z-index: 8;
              left: 8px;
              top: 1189px;
    #apDiv30 {
              position: absolute;
              width: 456px;
              height: 243px;
              z-index: 9;
              left: 505px;
              top: 948px;
              background-color: #0000FF;
              text-align: center;
    </style>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #apDiv31 {
              position: absolute;
              width: 389px;
              height: 389px;
              z-index: 10;
              left: 552px;
              top: 557px;
              font-family: "Comic Sans MS", cursive;
              font-size: 20px;
    #apDiv32 {
              position: absolute;
              width: 106px;
              height: 33px;
              z-index: 4;
              left: 762px;
              top: 52px;
    #apDiv33 {
              position: absolute;
              width: 432px;
              height: 1305px;
              z-index: 4;
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script><script type="text/javascript">
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    </head>
    <body onload="MM_preloadImages('Buttons/Contact.2.fw.png')">
    <div id="outwrapper">
    <div id="apDiv6">
      <div id="apDiv7"><img src="Images/banner.fw.png" width="960" height="246" /></div>
      <div id="apDiv10">
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a href="1_Index.html">Home</a>    </li>
      <li><a href="#" class="MenuBarItemSubmenu">About</a>
        <ul>
          <li><a href="2_2_Info_Instructor.html">Me</a></li>
          <li><a href="2_1_Info_zumba.html">Zumba</a></li>
        </ul>
      </li>
      <li><a href="3_Timetable.html">Timetable</a>    </li>
      <li><a href="#" class="MenuBarItemSubmenu">Gallery</a>
        <ul>
          <li><a href="4_2_Images.html">Images</a></li>
          <li><a href="4_1_Videos.html">Videos</a></li>
        </ul>
      </li>
      <li><a href="5_Prices.php">Prices</a></li>
      <li><a href="6_Contact.html">Contact</a></li>
    </ul>
    <p> </p>
      </div>
      <div id="apDiv11">COME DOWN TO ZUMBA SESSIONS (scheduled in &quot;Timetable&quot;)! IT IS ALOT OF FUN BUT AT THE SAME TIME YOU WILL BE WORKING OUT!!</div>
      <div id="apDiv18"><img src="Images/Page1- Index/instructor_pic_speech.fw.png" width="518" height="640" /></div>
      <div id="apDiv23"><img src="Images/Page1- Index/zumba logo_web_vert.jpg" width="160" height="334" /></div>
      <div>Content for New Div Tag Goes Here</div>
      <div id="apDiv31">Hello, and welcome to Fitness4Fun. On this website you can browse information about me or about Zumba in general. This site includes detailed descriptions on different aspects of Zumba (which is location in the &quot;About&quot; section of the website), images and videos (which is location in the &quot;Gallery&quot; section of the website), prices and offers that are available (which is located in the &quot;Prices&quot; section of the website), and also it allows you to contact me with any queries you may have regarding Zumba. </div>
      <div id="apDiv29">
        <div id="text2">
          <p>If you want more information on Zumba please click here to contact me (the instructor) about classes, suitable clothing or what the workouts involve and also why Zumba is a beneficial workout!!!</p>
          <p>If there is any problems with the website please contact [email protected] and it will be fixed ASAP</p>
          <div id="apDiv32"><a href="6_Contact.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image4','','Buttons/Contact.2.fw.png',1)"><img src="Buttons/Contact.1.fw.png" width="106" height="33" id="Image4" /></a></div>
        </div>
    </div>
      <div id="apDiv30">
        <p>
          <embed src="Images/animation advertisement.gif" width="442" height="206"></embed>
        </p>
        <p> </p>
        <p> </p>
    </div>
    </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    Thank You

    all I want is the content to be centered on all resolutions. How am I to this?
    APDivs as a primary layout method seldom works well. Here is why:
    http://apptools.com/examples/pagelayout101.php
    Don't use positioning.  You don't need it except in very rare situations.  APDivs are removed from the normal document flow, so centering them is impossible unless you wrap them all inside a relative positioned parent element.
    Best advice, start over with one of the centered, fixed-width layouts that comes with Dreamwever.  
    Go to File > New > Blank page > HTML > Layouts (choose one from the right side panel).  Hit Create button.
    Use CSS floats, margins & padding to align elements.
    Btw, I am not too good with coding/css
    That's a shame.  You should get up to speed with code basics soon otherwise DW will continue to frustrate you.
    HTML & CSS Tutorials -
    http://www.html.net/
    http://w3schools.com/
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Learn CSS positioning in 10 Steps
    http://www.barelyfitz.com/screencast/html-training/css/positioning/
    Nancy O.

  • How can I make Final cut pro 7 and Yosemite work?

    Hi dear Apple.
    I have this huge problem with Final cut pro 7 and Yosemite.
    I have tried to install it on a Mac book pro that has Yosemite but it doesn't work.
    I have an I mac with finalcut pro 7 working on Lion but I need to upgrade it to Yosemite to be able to use CC Adobe.
    I have a feature film worth 6,7 million SEK with Final cut pro 7 and I can't translate it to XML files to premiere cause it is in its last editing process. I get an error everytime I try. Also the last version of Fcp (X) ***** for a professional editor. So.. My only option is to finish this film in Fcp7.
    How can I use Yosemite and still be able to keep Fcp7?
    Please help me or do something about this issue soon. I bought fcp7 for 11000 SEK at the time that was quite expensive. 

    Hi Meg the dog! Thanx for answering!
    I know it was left to die 4 years ago. I just think its ****** up.. I work with documentaries and it takes quite a while to finish. I have done one for 6 years now. If I had known that Fcp7 was left to die I would never had started to edit 6 years ago...
    I did try this recommended on the forum by another user:
    Go to the app location in finder, CTRL click on the app and choose [Show Package Contents]. A folder [Contents] appears, click on it and choose [MacOS]. You'll see a Unix executable. Double click, you'll start Terminal. At the same time fcp will launch. After fcp is launched, close terminal and confirm when asked. Now fcp is up and running. Close fcp and the next time, just open fcp the normal way. DONE!
    But it doesn't work for me. I can't launch fcp7.
    I have Fcp7 Installed on my I mac and I wonder if that will effect fcp7 if I upgrade to Yosemte?
    I tryed to export XML to work on premiere and this is what happends:
    Any recommendations? I am going crazy here..

  • How can I make a JButton enabled when the user types smthg in a JTextField?

    Hello,
    I have a JButton and a JTextField on a frame. The JButton is disabled, myButton.setEnabled(false).
    How can I enable the button when the user types something in the text field? Just typing, not pressing enter.
    Thank you

    There isn't one, actually. What you need is a DocumentListener and you have to associate it with the document object associated with the field i.e.
    field2.getDocument().addDocumentListener() (new DocumentListener() {
    });

  • How can I have one "family" Apple ID and two icloud accounts one for me and one for the wife?

    MacVirgin!Just got new Air and iMac (iphones on the way). How can I have one Apple ID but two iCloud accounts (one for me and one for my wife)? I have set up one iCloud account and am attempting to share contacts between iMac, iCloud and Air, however iMac and iCloud are not in sync? I must be missing something very simple.

    ok. I set up the imac and Air with one user account. this was used to activae iCloud on both machines and I have now se up one iCloud account and managed to share calander and contacts between the two. Ultimately both me and my wife will have an iphone and we wish to share calenders and contacts. We both also use the imac and air on one user account. It looks like I need to set another user account then activate iCloud in my wifes Apple ID

  • How can I delete all the email from a user's account?

    I have a user account with a huge amount of mail (around 50K messages) that Apple Mail can't deal with... it constantly hangs and/or crashes whether I use POP or IMAP to try and delete all the mail from the client.
    How can I delete all the mail from the mailbox on the server? I don't want to delete the account entirely, I just want to empty everything out of it.
    Thanks!

    sudo -u _cyrus /usr/bin/cyrus/bin/ipurge -d 0 -f user/mailboxname
    HTH,
    Alex

  • How can I make a report public so the user doesn't have to login

    I am new to apex and am looking at using some of the reporting tools in apex to create reports in our existing application which is all hand coded htp.p calls
    The users already login to our application using their own oracle users and passwords through modplsql so I want to be able to embed the apex report into our application without the need to logon.
    Thanks
    Robert

    Thanks, I'm not sure if I'm being a bit thick but I can't see that!
    I've gone to
    Home>Application Builder>Application 105>Page 1
    which is my page deffinition and under security it just tells me 'No authorization schemes defined.'
    There is no Authentication option so I guess I'm looking in the wrong place!?

Maybe you are looking for