Looked right Live but a mess on Dreamweaver

I am starting on new site and have the basic structure set up. What I am going for is flexible width wrapper with the
contentRight div to be the flexible width item. It looks and works right when I view it in Live view or in a browser but back in the main Dreamweaver interface things are all out of place. It would be rather difficult to work this way on a whole website. I feel like there is something simple I am missing here.
I would appreciate it if someone could point out my error(s).
A link to view the page & html is http://www.2ndlookgraphics.com/newJRC/index.html
Her is my style sheet
@charset "utf-8";
/* CSS Document */
body {
background-color: #efeae6;
margin: 0px;
background-image: url(new_images/headerBkg.jpg);
background-repeat: repeat-x;
background-position: top;
padding: 0px;
p {
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #333;
h1 {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 20px;
font-weight: normal;
color: #069;
.divider {
clear: both;
height: 10px;
width: 100%;
position: relative;
left: -10px;
top: 640px;
#wrapper {
height: auto;
min-width: 900px;
max-width: 1000px;
margin-right: auto;
margin-left: auto;
position: relative;
margin-top: 0px;
}.headContent {
margin: 0px;
height: 104px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 35px;
#navContent {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #FFF;
margin: 0px;
clear: both;
height: 30px;
padding-top: 4px;
padding-left: 35px;
.contentLeft {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #333;
float: left;
height: auto;
width: 625px;
margin-top: 10px;
border-right-width: 4px;
border-right-style: ridge;
border-right-color: #8CCE2E;
position: relative;
margin-left: -25px;
.contentRight {
clear: right;
float: right;
width: auto;
margin-top: 15px;
margin-right: 35px;
margin-bottom: 15px;
padding-left: 25px;
position: absolute;
height: auto;
margin-left: 595px;
#bottomBar {
background-color: #8CCE2E;
padding: 0px;
clear: both;
height: 30px;
width: 100%;
border-top-width: 2px;
border-top-style: solid;
border-top-color: #969591;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
.footContent {
font-family: Arial, Helvetica, sans-serif;
font-size: 9px;
color: #666;
margin-top: 0px;
margin-right: auto;
margin-left: auto;
width: auto;
text-align: center;
padding-top: 15px;
#footer {
background-image: url(new_images/footerBkg.jpg);
background-repeat: repeat-x;
background-position: top;
padding: 0px;
clear: both;
height: 104px;
width: 100%;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
#mainBox {
background-color: #FFF;
background-image: url(new_images/rightEdge.jpg);
background-repeat: repeat-y;
background-position: right top;
margin: 0px;
padding: 0px;
clear: both;
position: relative;
#mainLeft {
background-image: url(new_images/leftEdge.jpg);
background-repeat: repeat-y;
background-position: top;
margin: 0px;
padding: 0px;
height: 100%;
width: 61px;
clear: none;
float: left;
position: absolute;
#mainContent {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 61px;
padding-right: 61px;
height: 100%;
position: relative;
#header {
background-image: url(new_images/headerBkg.jpg);
background-repeat: repeat-y;
background-position: top;
height: 104px;
width: 100%;

You need to set your page up slightly diiferently to what you have done. html and css are below. Copy and paste into new Dreamwaver document and save to your site folder (make a back-up of your original page just incase you want to revert to it).
<!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>Untitled Document</title>
<style type="text/css">
body {
    background-color: #efeae6;
    margin: 0px;
    background-image: url(new_images/headerBkg.jpg);
    background-repeat: repeat-x;
    background-position: top;
    padding: 0px;
p {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #333;
h1 {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #069;
.divider {
    clear: both;
    height: 10px;
    width: 100%;
    position: relative;
    left: -10px;
    top: 640px;
#wrapper {
    min-width: 900px;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
.headContent {
    margin: 0px;
    height: 104px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 35px;
#navContent {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #FFF;
    clear: both;
    height: 30px;
    padding-top: 4px;
    padding-left: 35px;
.contentLeft {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #333;
    float: left;
    width: 625px;
     margin-top: 10px;
     margin-bottom: 10px;
    border-right-width: 4px;
    border-right-style: ridge;
    border-right-color: #8CCE2E;
.contentRight {
    margin-left: 625px;
    margin-top: 10px;
    padding-left: 25px;
    padding-right: 35px;
#bottomBar {
    background-color: #8CCE2E;
    padding: 0px;
    clear: both;
    height: 30px;
    width: 100%;
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: #969591;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
.footContent {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    color: #666;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    width: auto;
    text-align: center;
    padding-top: 15px;
#footer {
    background-image: url(new_images/footerBkg.jpg);
    background-repeat: repeat-x;
    background-position: top;
    padding: 0px;
    clear: both;
    height: 104px;
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
#mainBox {
    background-color: #FFF;
    background-image: url(new_images/rightEdge.jpg);
    background-repeat: repeat-y;
    background-position: right top;
     overflow: hidden;
#mainLeft {
     background-image: url(new_images/leftEdge.jpg);
    background-repeat: repeat-y;
     overflow: hidden;
     padding-left: 61px;
#mainContent {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 61px;
    padding-right: 61px;
    height: 100%;
    position: relative;
#header {
    background-image: url(new_images/headerBkg.jpg);
    background-repeat: repeat-y;
    background-position: top;
    height: 104px;
    width: 100%;
</style>
<!--[if IE 6]>
<style>
#navContent {background-color: #8CCE2E;}
div {zoom: 100%;}
</style>
<![endif]-->
</head>
<body>
<div id="wrapper">
  <div class="headContent">Content for  class "headContent" Goes Here</div>
  <div class="navContent" id="navContent">HOME Downtown in Action Neghborhood Revitialization About JRC Contact Us</div>
  <div id="mainBox">
  <div id="mainLeft">
  <div class="contentLeft">
  <p>Content for  class "contentLeft" Goes Here</p>
  <p><img src="new_images/spacer.gif" width="400" height="458" /></p></div>
  <div class="contentRight">
  <h1>Jamestown Renaissance Corporation</h1>
        <p>Content for  class "contentRight" Goes Here and here and here</p></div>
  </div><!-- end mainLeft -->
  </div><!-- end mainBox -->
</div><!-- end wrapper -->
<div id="bottomBar">Content for  id "bottomBar" Goes Here</div>
<div id="footer">
  <div class="footContent">Content for  class "footContent" Goes Here</div>
</div>
</body>
</html>

Similar Messages

  • Website created in Dreamweaver CS4 doesn't look right in CS6

    I used to have an old version of Dreamweaver (CS4 I think) and my laptop got taken out by a lightening strike.  I have had to purchase Dreamweaver CS6 and I have loaded up my website (files recovered from hard drive) but the pages don't look right - wrong colours, wrong font, text missing, buttons not displayed properly etc.  any help gratefully received!

    Are you sure site files on your hard drive were not damaged by the electrical surge?
    Can you GET replacement files from your remote server?
    Nancy O.

  • I'm trying to print onto mailing labels, but it won't line up correctly.  It looks right on the template and the 1st row prints right.  The text keeps moving down a line on each row of labels, preventing it from printing the rest of them correctly.

    I'm trying to print onto mailing labels, but it won't line up correctly.  It looks right on the template and the 1st row even prints correctly.  The text keeps moving down a line on each row of labels, so the rest of it will not print correctly.  

    There are several ways you can go about this.
    1. Most labels come with Word templates or downloadable Word templates. Simply open those in Pages.
    2. Make a table with extra cells for the thin spaces between the labels and skinny those down to match the spaces. ie You have big fat cells for the actually labels and thin narrow empty ones for the gaps.
    3. Make a floating Text box the size of one label, format with dummy text just the way you like it.
    +Menu > Format > Advanced > Define as Placeholder text+
    You can now drag and drop snippets of text, the addresses etc onto those and it will replace them matching the style of the existing text.
    You duplicate that text box into position of the other labels by clicking on it with the command kety held down, then drag copy it up or across with the option and shift keys held down. Fine tune the positions with:
    +Inspector > Metrics > Position+
    Peter

  • Fireworks CS4 to CS6 - is there a setting that needs to be adjusted so that web pages look right in

    Fireworks CS4 to CS6 - is there a setting that needs to be adjusted so that web pages look right in Internet Explorer?  I was in the middle of creating pages with Fireworks CS4 and exporting them to Dreamweaver CS4 and publishing them to the website. Those pages looked fine. Then I upgraded to CS6 and the pages  look fine in  Fireworks, Dreamweaver and when I preview them "live" in Chrome but not Internet Explorer. Anyone know why?  Also, with upgrading the software I upgraded to a new computer.  Any and all suggestions are welcomed.  Thanks!

    Most likely caused by a missing document type declaration (DTD).  Truth is, the HTML code generated by graphics apps is not web worthy.  It's really only intended for quick mock-ups to show a client before you rebuild everything with CSS & HTML code in Dreamweaver. 
    This 3-part tutorial describes how to take your Design from Fireworks or Photoshop to a CSS Layout in Dreamweaver.
    Part 1 - Initial Design
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    Part 2 - Markup preparation
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt2.html
    Part 3 - Layout and CSS
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt3.html
    Nancy O.

  • Layout dosn't look right in design view

    I have made the following to re-create the cross pattern I used for a FrontPage website:
    http://www.benedictines-cib.org/demo/cross.html
    It looks right in the browser, but when I view the page in design view (CS4) the navigation lines up on the left with the blue header and underneath it. Is this just something that happens? Or can I do something to avoid it? It looks fine in Live View.

    This happens sometimes and it can be disconcerting, but the reality is design view is meaningless. I'd much rather have it perfect in the browser and not in DV thn the other way around. Code looks good, I'd not worry about it and let F12 be your freind.
    Gary

  • I have an older version of Adobe Digital Editions (around 3 years old) and was very happy with it.  Then I had problems with my Kobo Reader and asked a friend who works in IT to assist. She could not fix the Kobo but she messed up my Addobe. She downloade

    I have an older version of Adobe Digital Editions (around 3 years old) and was very happy with it.
    Then I had problems with my Kobo Reader and asked a friend who works in IT to assist. She could not fix the Kobo but she messed up my Addobe. She downloaded version three and I have an account and a password - was not able to transfer my books from my reader to version three (and I don't like the lay-out - I would prefer to stay with the old version as I also loose all my download date info..)
    But all the books I have bought over the last three years are in the old Adobe Digital and I cannot access them any more. When I use it I get the message "that the document is licensed to a different account. I can't even open the books on my computer.
    When I go to my Kobo library, I cannot also not open my books and get the message "this doc is protected by adobe digital rights management and is not currently authorized for use with your adobe. please sign in with your authorized adobe id and try again"
    I believe the problem is that I do not seem to have a digital id for my old adobe or that the Kobo is not in sync with it anymore.
    can you please help me - going on vacation in three days and cannot go without books.

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • Exported Video Does Not Look Right

    I am sure this is a basic setting I am overlooking, but a lot of this is new to me - any help would be GREATLY appreciated.
    My goal is to create a high quality 640x480 movie for Computer/Web viewing only.
    • I shot a short video using a Canon Vixia HV30 to mini DV tape using the SD standard - no problem. I guess that records at 720x480 non-square pixels at 29.97fps - is that right?
    • I used log and capture inside of FCP v6.0.5 to capture the various clips I needed - no problem (I don't think). If I open each of those clips from the finder in Quicktime they look "pretty" good, but a bit of aliasing on the diagonals and somewhat blurry, but not sure why? Everything looks sharp on the smaller camera LCD screen? and looks pretty good inside of FCP on the Canvas? If I open one of these captures directly inside of Quicktime and do a get info, it says...
    DV 720x480 (640x480)
    FPS: 29.95
    Normal Size: 640x480 pixels
    Current Size: 640x480 pixels (Actual)
    All these Quicktime movies appear slightly larger in height and width than the same clips when viewed in the FCP Canvas?
    If I open the Sequence Settings in FCP it says...
    Frame Size 720 x 480 NTSC DV (3:2)
    Pixel Aspect Ratio NTSC - CCIR 601 /DV (720x480)
    Field Dominance: None
    Editing Timebase: 29.97
    Everything looked pretty good inside FCP so I Exported a QT Movie using "Current Settings". Then opened the resulting self-contained movie in QT and it looks pretty bad. When I get info in QT on the rendered final movie it reads...
    DV 720x480 (640x480)
    FPS: 29.97
    Normal Size: 720x480 pixels
    Current Size: 640x480 pixels (Actual)
    So... the FPS and the Normal Size are not the same as the captured original clips.
    Can anyone tell me what I am doing wrong?
    Is this just the wrong Sequence Settings, Export Settings or do I have to start over an re-capture all my footage some other way?
    PS - I am assuming that the DV Camcorder is recording interlaced (60 fields) rather than progressive - is that right. Do I need to de-interlace the video somehow?
    Message was edited by: ChoreoGraphics

    I'm far from being an expert, but since no one has replied to you yet, and because I've been helped out here plenty of times, I'll post something and who knows -- it may be the answer.
    Your post was really long but from what I can gather, you're wondering why your exported video does not look good when you open it in QuickTime. Try this: Open the video in QT, hit command-J, then click on Video Track, then at the bottom right (under Visual Settings) you'll see High Quality, Single Field, and Deinterlace. Click around on those to see if that improves what you see.

  • Aspect Ratio issues getting 16:9 to look right, what is the best workflow?

    Hi all,
    I am having trouble getting my 16:9 footage to look right when I export, especially when playing on DVD. I shot the footage with a Sony HDR-HC1 which apparently shoots in 16:9 anamorphic. Originally when I imported the footage it appeared it the FCP viewer and canvas in 4:3 letterboxed form, the image did not look squeezed or stretched but appeared with black stripes on top and bottom.
    I have tried several experiments with exporting this footage to dvd with the following results:
    Using Compressor with 4:3 setting in export:
    DVD Studio Pro track settings to 16:9 looks extra squashed vertically
    DVDSP track settings to 4:3 image looks in proper aspect ratio but displays with black stripes on all 4 sides.
    Using Compressor with 16:9 settings in export gives the same results.
    In conclusion, if it appears in 4:3 letterbox in FCP viewer and canvas there is no way to get it to export and display in DVD with proper 16:9 aspect ratio.
    I have also done some experimenting with re-capturing some of the footage from the tape.
    For one sequence I recaptured the footage and it displayed in 4:3 without the letterboxed effect (filling the whole screen) but appeared squeezed, I am guessing that this is because of the anamorphic nature in which my camera captures the footage. No pixels were missing. In the FCP viewer and canvas it looked squeezed and did not display in the correct aspect ratio, however when it was exported via Compressor in 4:3 and then in DVDSP Track Settings put to 16:9 Letterboxed, it is displayed perfectly (letterboxed vertically, the image filling the width of the screen without the extra stripes on the sides).
    So I thought that I had my solution here, although that did involve re-digitizing and batch capturing all 18 tapes used in the project, so its not exactly a quick fix.
    This is where it gets a bit confusing. In order to understand where I had originally gone wrong in my workflow I did some more experiments, this time with the settings on the camera (which I use for a deck in batch capturing). I found the function on the camera where you can set the "TV Type" to either 16:9 or 4:3. I switched the TV Type to 4:3 and when batching it went back to the original letterboxed look (in the batch preview screen that you see while capturing), however when put into the viewer and canvas it was too letterboxed and looked squashed vertically. So then I switched back to TV Type 16:9, now it looks 4:3 squeezed in the batch preview screen (no letterboxing, no missing pixels), however when it goes into the viewer and canvas it becomes letterboxed like the original footage that I had described earlier.
    So now even though I have switched the camera back to its original settings it will not display in that 4:3 squeezed look in FCP viewer and canvas.
    So after all that my main questions are, in 16:9 can I view it in the FCP viewer and canvas in its correct (anamorphically converted) aspect ratio and still export it without the black bars on all sides?
    (The FCP canvas seems to only display in 4:3)
    If not, what setting do I need to capture in FCP in the 4:3 squeezed look I have described earlier?
    (This is the only setting that I have found that displays properly when anamorphically stretched via DVDSP)
    I know that this is a long essay so thanks for making it this far. I have spent weeks experimenting trying to find the best solution so please help me if you know how! I will be very appreciative.
    Thanks
    Liam

    Hi there,
    I am not sure if it is necessarily a bug, but its a matter of understanding all of the settings needed. I had the same problems for a while but after a fair bit of trial and error have found some workable settings.
    It probably has more to do with the export settings rather than what viewer options have selected (I don't think that viewer settings affect your export).
    What program are you using to export?
    I am using compressor to export with aspect ration set to automatic 16:9. Then use DVDSP with the track set to 16:9 letterbox, it seems to export to DVD with the correct aspect ratio that way.
    I am having trouble with the image strobing, looks like some kind of interlacing problem, but at least I have got it in the right aspect ratio.
    Its typical video, solve one problem and it just creates another.
    I am yet to find the absolute best workflow.
    In response to Andy above, the original letterboxed footage probably did have something to do with the downconverting settings on the camera, as when I import without downconverting it does not letterbox. In the HDR-HC1 there is an option in the menu called "TV Type" with options of 4:3 or 16:9. I was reviewing my footage on a 4:3 television so I most likely had it set to 4:3 which created the letterboxing in the viewer when I then imported the footage.
    Importing the footage in HDV solves the issue of aspect ratio, but creates a new problem with the image strobing.
    I hope this was some kind of help to you.
    Liam

  • Why are my webpages not looking right or my personas not working as they were?

    I opened up my browser yesterday and no matter where I go on the web, the pages don't look right. The graphics are off. I can't even see my yahoo mail. It loads, but I see no words or graphics. My Personas is actually rotating, but all I get visually is a color, no graphics at all. I have tried uninstalling and reinstalling twice to no avail. I'm not sure what to do now. I can use Explorer without any graphics issues, but I really like Firefox much better and would like to get this issue resolved.

    In FCE make sure nothing is selected in the timeline before exporting
    In the Chapter Marker submenu do NOT erase the <Chapter> slug; it doesn't show up in the chapter title but it must be there
    When exporting from FCE try exporting as DVD Studio Pro markers (if it gives you that option) just for a change
    In iDVD I believe there is a Preference setting to make sure it recognizes chapter markers; check for that

  • Backed up ipod to new laptop but laptop messed up songs albums and covers

    Any ideas how to fix this? I have successfully got a back up from my ipod to my new laptop itunes account but it messed up all the songs, albums and covers which was why I was trying to back up to laptop in the first place. Albums are still on home network but I really wanted to be able to sync to my new laptop but it's all a mess. I don't want to sync from itunes on laptop with the albums a mess as the ipod is still in good order but obviously I can't add anything new until this is fixed. Any ideas? I always manually sync.

    I believe that Apple's "Backup" application uses a special storage scheme that normaly requires Apple Backup to restore the backup items. There may be a problem, though, because your screenshot shows the backup items as ordinary folders. I don't use Backup any more, but I have some old storage items made with Backup 3, and my full and incremental backup items look like single files in Finder. They actually are packages, "special" folders with the same internal structure as the one you posted, but which look like single files in Finder. Maybe you used an earlier version of Backup that creates folders instead of package files.
    I don't know if Backup 3 will be able to open and use the "normal-looking" folders that you do have, but it's worth a try. If you don't have Backup 3 on your current Leopard installation, you can download it at
    http://support.apple.com/kb/DL184
    You need a MobileMe subscription to make new backups, but I think you can restore old backups even without a subscription. There is a Help menu in Backup 3 which includes instructions on how to restore things when you no longer have the backup plan used to make the backups. You would normally use Backup 3 to open the most recent IncrementalBackup file if there is one, otherwise the FullBackup file. In your situation I would try to open the folder with those names, not the folder contents.
    If this doesn't work try double-clicking the "backup.sparseimage" files in the Folder>Contents>Contents subfolders. If the disk image mounts, look inside the mounted disk for your stuff and drag the contents back to your internal HD. Don't try to restore "settings", just datafiles.

  • Nested tables don't look right in design mode

    When I view www.akashhealingcenter.com with IE or Safari,
    everything looks fine. However, when I open the page in DW 2004,
    the tables don't look correct while in design or code/design mode.
    I've driven myself nuts trying to find out what I can do so
    that it looks correct.
    If I can get it to look right, I can turn daily maintenance
    (text updates mostly) to someone else - however, with the design
    looking so unlike the actual web page, I can't.
    I'm assuming the nested tables, graphic image backgrounds in
    the table data, etc. are driving DW 2004 nuts. I really don't want
    to spring for a new version of DW, so I hope that's not the answer.
    Thanks for the help.

    > The backgrounds won't matter a jot because as they are
    link with a full
    > path url nothing will appear in DW design view locally.
    Will do in DW8/CS3....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Osgood" <[email protected]> wrote in
    message
    news:fc86fc$ra2$[email protected]..
    > Dougmo2003 wrote:
    >
    >> When I view www.akashhealingcenter.com with IE or
    Safari, everything
    >> looks fine. However, when I open the page in DW
    2004, the tables don't
    >> look correct while in design or code/design mode.
    >
    >
    > What exactly do you mean by 'Dont look correct'? The
    link yu provided
    > looks ok in my DWMX04 design view.
    >
    > Not much styling, as that is mostly provided by the
    background images, but
    > everything seems to be accessible to work on.
    >
    > I have'nt checked any other pages of the site except
    your home page.
    >
    >
    >
    >> I'm assuming the nested tables, graphic image
    backgrounds in the table
    >> data, etc. are driving DW 2004 nuts.
    >
    >
    > The backgrounds won't matter a jot because as they are
    link with a full
    > path url nothing will appear in DW design view locally.
    >

  • State to look like another, but not based on it?

    Hello all, I've a strange request about view states
    I have a state that initialises a datagrid on load and that
    works just fine (it shows open issues)
    Above there is a link button to show closed issues, I tried a
    new state based on open issues but the code didn't look right, so I
    created a new state based on the base and then copied all the code
    to remove and add children.
    All that need to happen is that the datagrid in this state
    needs to display one extra column (and different data!)
    But I get this error: -
    Severity and Description Path Resource Location Creation Time
    Id
    In initializer for 'states': type mx.states.RemoveChild is
    not assignable to target Array element type .
    <projectname>/src <projectname>.mxml line 257
    1223502361318 179
    The line itself is the middle of these three: -
    <mx:State name="issues_board_closed"/>
    <mx:RemoveChild target="{regUsersLabel}"/>
    <mx:SetProperty target="{currentIssues}" name="y"
    value="85"/>
    Anyone ever copied viewstate code to another before, had any
    issues?
    Thank you, Mark

    Yes it is fixed. Unfortunately I had this on before figuring out the answer. FYI the method applies on this too. Photos are not different. They are rec in which increasing the width forces the fill (image) to scale up.

  • Date time picker script does not look right when calender pops up

    When I use this script in my header, my date time picker does not look right.  The pop up calender works but the layout is off,  here is the code I am adding to my header:
    <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
        <link rel="style.css" type="text/css" media="screen"
         href="http://tarruda.github.com/bootstrap-datetimepicker/assets/css/bootstrap-datetimepicker.min .css">
    And here is the code I am adding to the body of the html page below: Is it the placement of the code in the header? I've tried the beginning and the end of the hearder but no difference.  Thanks for your time on this....
    <div id="datetimepicker" class="input-append date">
    <input type="text"></input>
    <span class="add-on">
    <i data-time-icon="icon-time" data-date-icon="icon-calendar"></i>
    </span>
    </div>
    <script type="text/javascript"
    src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js">
    </script>
    <script type="text/javascript"
    src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js">
    </script>
    <script type="text/javascript"
    src="http://tarruda.github.com/bootstrap-datetimepicker/assets/js/bootstrap-datetimepicker.min. js">
    </script>
    <script type="text/javascript"
    src="http://tarruda.github.com/bootstrap-datetimepicker/assets/js/bootstrap-datetimepicker.pt-B R.js">
    </script>
    <script type="text/javascript">
    $('#datetimepicker').datetimepicker({
    format: 'MM/dd/yyyy hh:mm:ss',
    language: 'en'
    </script>

    Page is not up yet, can I attach the html to this forum?  I'l cut and paste the html below, thanks
    <!DOCTYPE html>
    <!-- Consider specifying the language of your content by adding the `lang` attribute to <html> -->
    <!--[if lt IE 7]> <html class="no-js ie6"> <![endif]-->
    <!--[if IE 7]>    <html class="no-js ie7"> <![endif]-->
    <!--[if IE 8]>    <html class="no-js ie8"> <![endif]-->
    <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
    <head>
    <!-- this is the header code for the date/time picker-->
      <link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
        <link rel="style.css" type="text/css" media="screen"
         href="http://tarruda.github.com/bootstrap-datetimepicker/assets/css/bootstrap-datetimepicker.min .css">
          <!-- to here-->
        <meta charset="utf-8">
        <!-- Always force latest IE rendering engine & Chrome Frame -->
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <!-- Put your title here! -->
        <title>Hawaii Beach Weddings</title>
        <meta name="description" content="">
         <!-- Mobile viewport optimized: j.mp/bplateviewport -->
        <meta name="viewport" content="width=device-width">
        <link href="style.css" rel="stylesheet">
        <!-- Load Open Sans and Merriweather from Google Fonts
            For optimal performance, customize it to load the styles you need:
            http://goo.gl/QufgJ
        -->
        <link href="//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700|Merriweathe r:400,700,900" rel="stylesheet">
        <!-- All JavaScript at the bottom, except for Modernizr
            Modernizr enables HTML5 elements & feature detects; It includes Respond, a polyfill for min/max-width CSS3 Media Queries
            For optimal performance, use a custom Modernizr build: www.modernizr.com/download/ -->
            <script src="js/modernizr-2.6.1.min.js"></script>
        <script src="js/modernizr-2.6.1.min.js"></script>
    </head>
    <body>
        <!-- Prompt IE 6 and 7 users to install Chrome Frame:        chromium.org/developers/how-tos/chrome-frame-getting-started -->
        <!--[if lt IE 8]>
            <p class="chromeframe alert alert-warning">Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p>
        <![endif]-->
        <header id="master-header" class="clearfix" role="banner">
            <hgroup>
                <h1 id="site-title"><a href="index.html" title="Your Site Name">Hawaii Beach Weddings</a></h1>
                <h1 id="site-title2"><a href="index.html" title="Your Site Name">xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</a></h1>
                <h2 id="site-description">Where the Sun, Sand and Love come together...</h2>
            </hgroup>
        </header> <!-- #master-header -->
    <div id="main" class="row">
        <!-- Main navigation -->
        <nav class="main-navigation span12 clearfix" role="navigation">
            <h3 class="assistive-text">Main menu</h3>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li class="current">
                    <a href="about.html">About</a>
                    <ul class="sub-menu">
                        <li><a href="http://www.google.com">Subpage 1</a></li>
                        <li><a href="#">Subpage 2</a></li>
                    </ul>
                </li>
                <li><a href="contact.html">FAQ's</a></li>
            </ul>
        </nav> <!-- #main-navigation -->
    <div id="content" role="main" class="span12">
        <article class="page hentry">
            <header class="entry-header">
                <h1 class="entry-title">Simple Beach Weddings</h1>
            </header> <!-- .entry-header -->
            <div class="entry-content">
                <p>We specialize in simplicity for your beach wedding.  Let us keep it simple by offering what you need to make your beach wedding easy </p>
                <!-- Typography
                ================================================== -->
                <section id="typography">
                    <h1>I am first a photographer who loves to<small></small>capture &quot;the moment.&quot;</h1>
                    <p>By organizing Hawaii Beach Weddings, I have allowed myself to do what I do best: capture your moment. I use industry professionals to make a sometimes stressful event easy. By keeping it to a few simple choices: A Minister (necessary), Flowers, Music, Video, Chairs (optional), I have allowed you to quickly design your wedding event and enjoy your stay in the islands. </p>
                        <div class="row">
                            <div class="span7">
                                <h2>Ministers:</h2>
                                <h3>Reverand Robert Hoyt</h3>
                                                <p> </p>
                            </div>
                    </div>
                      <h2> </h2>
                        <div class="row"></div>
                        <div class="row">
                  </div>
                    <h2> </h2>
                </section>
                <section id="tables">
                  <div class="row">
                  </div> <!-- .row -->
                </section> <!-- #tables -->
                <!-- Forms
                ================================================== -->
                <section id="forms">
                    <h1>Let's begin with your contact information.</h1>
                    <form class="row">
                        <fieldset class="span5">
                          <p>
                            <label>Name
                              <input type="text" required></label></p>
                              <br>
                              <p><label>Phone number with area code <input type="text" pattern="\d{5}(-\d{4})?" title="a US Zip code, with or without the +4 exension" placeholder=" 123-456-7891"></label></p>
                              <br>
                              <p>
                              <label>Email
                              <input type="email"></label></p>
                              <br>
                              <h1>Where would you like your wedding to be?</h1>
                 <p><label>Honolulu (South Oahu)<input type="radio" name="rad"></label></p>
                 <p><label>Waimanalu (East Oahu) <input type="radio" name="rad"></label></p>
                    <br>     
                    <h1>What date & time would you like to have your wedding?</h1>
                     <!--This is the date/time picker-->
                          <div id="datetimepicker" class="input-append date">
          <input type="text"></input>
          <span class="add-on">
            <i data-time-icon="icon-time" data-date-icon="icon-calendar"></i>
          </span>
        </div>
        <script type="text/javascript"
         src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js">
        </script>
        <script type="text/javascript"
         src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/js/bootstrap.min.js">
        </script>
        <script type="text/javascript"
         src="http://tarruda.github.com/bootstrap-datetimepicker/assets/js/bootstrap-datetimepicker.min. js">
        </script>
        <script type="text/javascript"
         src="http://tarruda.github.com/bootstrap-datetimepicker/assets/js/bootstrap-datetimepicker.pt-B R.js">
        </script>
        <script type="text/javascript">
          $('#datetimepicker').datetimepicker({
            format: 'MM/dd/yyyy hh:mm:ss',
            language: 'en'
        </script>
        <br>
                         <h1>What type of flowers would you like to have?</h1>
                         <p>
                                <label>Bouquet<br>
                                    <select>
                                        <option>None</option>
                                        <option>Red roses</option>
                                        <option>White roses</option>
                                        <option>Hibiscus</option>
                                    </select>
                                </label>
                            <p>
                                <label>Flowers<br>
                                    <select>
                                        <option>None</option>
                                        <option>Roses</option>
                                        <option>Orchids</option>
                                        <option>Hibiscus</option>
                                    </select>
                                </label>
                                  <h1>What type of Leis would you like to have?</h1>
                                <label>Leis<br>
                                    <select>
                                        <option>None</option>
                                        <option>Kukui nut (male)</option>
                                        <option>Orchids (inexpensive)</option>
                                        <option>Stephanotus (sweet smelling</option>
                                    </select>
                                </label>
    </fieldset>
    <fieldset class="span4">
                          <p>
                           <!--this is the chair number selector-->
                            <p>
                               <label>Music<br>
                                    <select>
                                        <option>None</option>
                                        <option>solo singer with ukulele</option>
                                        <option>solo singer with guitar</option>
                                        <option>solo guitar instrumental</option>
                                        <option>small ensemble</option>
                                    </select>
                                </label>
                              <br>
                              <label for="s">Number of Chairs</label><p>
                                <select id="s">
                                    <option>none</option>
                                    <option>1</option>
                                    <option>2</option>
                                    <option>3</option>
                                    <option>4</option>
                                    <option>5</option>
                                    <option>6</option>
                                    <option>7</option>
                                    <option>8</option>
                                </select>
                            </p>
                            <p>
                              <label for="t">Notes</label> <textarea id="t" cols="30" rows="5">Textarea text</textarea></p>
                        </fieldset>
                <!-- Miscellaneous
                ================================================== --><!-- #miscellaneous -->
            </div> <!-- .entry-content -->
        </article> <!-- .post.hentry -->
    </div> <!-- #content -->
    </div> <!-- #main -->
        <footer id="footer" role="contentinfo">
            <!-- You're free to remove the credit link to Jayj.dk in the footer, but please, please leave it there -->
        </footer> <!-- #footer -->
        <!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
        <script>window.jQuery || document.write('<script src="js/jquery-1.7.2.min.js"><\/script>')</script>
        <!-- Load custom scripts -->
        <script src="js/script.js"></script>
    </body>
    </html>

  • I can't watch shopnbc on my iPad from their website. I used to be able to watch it live, but now it says error loading file. Help?

    Having issues with watching shopnbc live, from their website, on my iPad 4. I used to be able to watch it live, but for some reason, when I select the play button, it tells me "error loading file" . That's it. Anyone know a fix for this, or what may be going on here?

    My guess is that they recently changed how the videos work. I logged in on my MacBook and the stream worked fine, but it is Flash content in a JW Player video player. From what I see on the website. This video player works with html5 as well as Flash so I'm not sure why it isn't working, unless the site has not updated the content for html5 and is only using Flash right now. But you should get the message on the iPad that the content is in Flash and can't be viewed on the iPad.
    I tried it with three different browsers identifying as mobile and as desktop browsers and I get the same results as you no matter what I do. So my assumption is that the site content was recently changed and it has to be updated. But that is just a guess.
    The message about the website having issues when I used iCab Mobile and identified as a desktop browser. The issue has to be on their end.

  • When I import video from my iphone to imovie it doesnt look right, it makes everyone look wider and shorter. Is there a way to fix this?

    When I import video from my iphone to imovie it doesnt look right, it makes everyone look wider and shorter. Is there a way to fix this?

    This is close.  I did a bit more digging I have found a few more things.   It appears that the input dialog is a read once on connect and then it never updates.  I had my iPhone connected to my Mac when I did my convert from FILMiC Pro to my Camera Roll.  Just on a whim, I dissconnected my iPhone with FCPX open and then connected it again.  This time when I opened up the Import window the movie I converted showed up.   It appears my issue may have simply been related to the specific series of operations that I happened to use at the time I was trying to perform an import to FCPX.
    One last item of note.  There is a movie in my Camera Roll that FCPX still does not see.  This was a movie shot by my son-in-law of my grandaughter on his iPhone and then it was sent, via message, to my iPhone.  Obviously it is a highly compressed video of unknown compression and frame rate.   Regardless, FCPX does not see this video.  I'm guessing it is not a .mov quicktime file but some other format specific to imessage video.
    Thanks for the help Russ.  It at least pointed me in the right direction.  I understand why no one else could comment as I'm guessing no one else has had an issue.  A very subtle "feature".

Maybe you are looking for

  • Create WiFi-profile on iOS

    I am working with the setup of MDM with intune to a bunch of iPhone 6's. Generelley everything works until now. So far so god. But i have discovered, that when i try to create a wifi-policy, I am not able to enter the Preshared key. The network is a

  • Migration of Oracle 8i PL/SQL to Oracle 9i PL/SQL

    Hi, Can anybody help me giving information about mandatory requirements to migrate from 8i to 9i. Also please let me know if any documents related to that for PL/SQL and PRO * C migration from 8i to 9i. Thanks with Regards, Guru

  • McAfee Antivirus automatic remediation

    Hello All, I'm having an issue with McAfee Antivirus remediation. I'm using Cisco NAC 4.8.2 and it seems that automatic remediation is not working. Could someone help? Is there a webpage where we can check which AV can do automatic remediation?

  • PDF EXPORT - TRANSLATION QUERY

    with Export PDF - if I scan a document with text & pictures for conversion to Word, is there a facility for the final document to be printed off in Englsih, rather than the original (Spanish)

  • Premiere pro cs4 encoding 1440 x 1080 restarts pc

    I have been trying to encode panasonic p2 footage (DVCproHD) (1440x1080) using media encoder cs4, but at around halfway of a 6min sequence (with no effects) my pc just restarts. This happens with both [mpeg2 1440x1080 25 high quality] and [blue ray 1