Why cant DW CS5.5 show html5's new elements in the wysiwyg design view?

Why cant DW CS5.5 show html5's new elements in the wysiwyg design view?
I created a <section> and an <aside> in code view, and styled those elements in my CSS, but it doesnt show anything in design view!
why not?
Its annoying.
CS5.5 is Adobe's spring 2011 release.
Why is it not up to speed??
Isnt html5 very 2009-2010ish?
Is there an add-on i can install?
thanks.

Well we are all "getting up to speed" with HTML5 because, as it stands, it is still not a standard.
As to styling in CS4 vs CS5.5, Dreamweaver is an engine that assists in making good HTML code. It's agnostic. If you don't close your tags properly in CS 5.5 and then open the same document in CS4, it will notice that you did not close your tags properly.
Adobe makes plugins that will allow CS4 to do code hinting properly with HTML5 selectors and CSS3, assuming the document is peroperly defined as an HTML5 document.
Here is the beginning of one of my most recent HTML5 documents:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Page Title Goes Here</title>
<link href="css/normal.css" rel="stylesheet" type="text/css" media="all">
<link href="css/navigation.css" rel="stylesheet" type="text/css" media="all">
<!-- include CSS before the Shiv -->
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
This works.

Similar Messages

  • CS3 will not show CSS3 and HTML5 in WYSIWYG "design view"?

    So, just got a mobile site template that is CSS3 and HTML5. When I open it to work on it in Dreamweaver CS3, the CSS is not displayed in the "design view" but yet, when you preview in browser, all is perfect. In the WYSIWYG design view, I see the content, but styling is missing. Preview in browser, it is all there.
    Is this just a limitation in the CS3 WYSIWYG design view function and I am out of luck? Is there a "fix" - other than a costly upgrade - for it in CS3?

    yuytjtdh wrote:
    So, just got a mobile site template that is CSS3 and HTML5. When I open it to work on it in Dreamweaver CS3, the CSS is not displayed in the "design view" but yet, when you preview in browser, all is perfect. In the WYSIWYG design view, I see the content, but styling is missing. Preview in browser, it is all there.
    Is this just a limitation in the CS3 WYSIWYG design view function and I am out of luck? Is there a "fix" - other than a costly upgrade - for it in CS3?
    Dreamweaver's design view isn't perfect WYSIWYG even for CSS2.1.  Also, I believe you are using a very old DW (CS3) so you are definitely out of luck.  Have you tried using the trial version of CS 5.5?  It is worth a try but I am not recommending you to buy it now because CS6 is expected to  be released in the second half of this year if not before.
    Please note DW isn't a WYSIWYG editor so I won't rely on it at all.  Always view your page in the two main browsers - FF and IE8/IE9
    Good luck.

  • I bought a new ipad and shared my documents in Pages from the old ipad to my cloud, but the only document showing on my new pad is the ones that was not in folders. Have I lost my documents for ever?

    I just bought a new ipad and shared my documents in Pages from the old ipad to my cloud, but the only documents showing on my new pad is the ones that was not in folders. Have I lost my documents for ever?

    Thank you, but after an hour with apple support on the phone we came to the conclusion that the documents are lost... So the lesson is, don't trust icloud as a back up solution! A month worth of work down the drain...

  • Why cant illustrator create outlines of fonts not installed on the computer when opening an eps or p

    why cant illustrator create outlines of fonts not installed on the computer when opening an eps or pdf as corel can?

    estone,
    From PDF (with the font(s) embedded):
    In Acrobat, Advanced>Print Production>Flattener Preview, then File>Place into Illy without embedding.

  • I would very much like to understand why Siri is being marketed as something new.  before the latest Iphone Siri was a free app.  Now it is no longer available???  Assumption is to use Siri I must buy a new iphone

    i would very much like to understand why Siri is being marketed as something new.  before the latest iphone  Siri was a free app which was present on my old iphone.  Recently purchased another 3G and Siri is is no longer available???  Assumption is to use Siri I must buy  the latest and greatest  iphone. 

    Siri that is in the iPhone 4S is "new". It is based on technology the old app used (Apple bought the company), but it has been extended, enhanced, improved and integrated into the OS in a way the old app never could.
    So, yes, now to use Siri you need an iPhone 4S. It is no longer available as a separate, third-party app.

  • Why cant i make a FaceTime call from iMessage on the iPad

    why cant i make a FaceTime call from iMessage on the iPad

    Because you make a FaceTime call from FaceTime on the iPad.
    On a Mac, you can start and iChat conversation from the Messages app and maybe that is what you are talking about. iChat can still be used in Mountain Lion in order to have a face to face conversation with other Mac users that are not running ML and therefore do not have FaceTime.

  • Do not show dots for 'free' events in the calendar month view

    I wish I could.... not show dots for 'free' events in the calendar month view. For an overview of when I have hard-scheduled events in the calendar it's pretty tedious and slow to go day -by day, and other views... Instead the dot  in the month view... - why does it show even "free" events? Any ideas, tips?
    Thanks!

    Unfortunately there is no option to disable the dots.
    <Edited by Host>

  • How to add a new Element to the Context

    Hello all.
    I created in the wdInit()
    ArrayList datas = new ArrayList();
         for (int i = 0; i < 25; i++) {
              MyData data = new MyData();
              data.setMethods();
              datas.add(data);
         wdContext.nodeMyData().bind(datas);
    Now, I want by clicking on the Button "Create new Element", forward user to the other View, which elements are connected with the same model -> context, the new element should be added to context, the user should fill the form and click Save-Button.
    How can I add a new Element to the Collection I created and choose it as a current element?
    If I do: wdContext.nodeMyData().bind(new MyData()) all information will be lost. And I will have only one field.
    If I do it like this:
    IWDNodeElement dynTabElem=(IWDNodeElement)wdContext.nodeMyData().createElement();
    wdContext.nodeMyData().addElement(dynTabElem);
    I get an error: com.sap.tc.webdynpro.progmodel.context.ContextException: NodeInfo(DataComp.MyData): value node is created without a reference
    Well I can pass to my new View a Collection as a parameter and then
    Collection.add(new MyData()) and then bind it. But I find this solution not good.
    Is there any possibility to get the existing Collection from the Context without passing it to the view?
    Can I just add a new element to the existing collection?
    Thanks in advance.

    Hallo Monalisa,
    I did as you said. But I can't add something to my model class, because it is not collection.
                            MyData data = wdContext.currentBelegElement().modelObject();
                   data.add() ???? - don't work
                   wdContext.nodeMyData().invalidate();

  • Why is it that when looking through  new apps in the  apps store on my ipad in release date mode  does it return to the first 1-12 after viewing pparticular apps?

    why is it that when I look through the new apps in the apps store in release date mode it returns to the first page after veiwing more information about some apps, I could be ten to twenty pages in and have it happen.
    Also, I only speak and read English and although there are probably great apps for people from other nations, I don't want to wade through all the apps that I can't make use of. I expect that people of other nationalities or languages don't want to have to wade through every app that they can't make use of, is there not a way that alI users could filter by language?
    I mean no offence to anyone but with a collection of hundreds of thousands of apps in all languages and the jump back to the begining after possibly being into the list by a number of pages I stop looking after awhile and I'm sure I've missed some excellent apps by doing so.

    Contact iTunes support : http://www.apple.com/support/itunes/contact/

  • WHY CANT I RECIEVE PICTURE AND MUSIC VIA BLUETOOTH ON THE IPHONE5

    why cant i receive pictures, music, videos via bluetooth from other devices on the iphone 5

    Then return your phone.  Have you ever actually USED bluetooth file sharing?  It's as slow as molasses.  Do you know how long it would take to transfer one photo taken by your iPhone?  Seemingly forever.  This is why Apple doesn't support this.
    Apple does support BT where it makes sense, and where the slow BT speed doesn't matter:  BT headphones, BT for car handsfree units, etc. 

  • How to get iTunes TV shows to a new mac without the old Mac

    Hi,
    so recently my old (only 1,5 years old!!!!) MacBook died.
    It was all very sad and inconvenient for a poor pennyless Student!
    Now I got a beautiful new (well refurbished) MacBookPro (for which I will be paying longer than I will study)
    and I tried to get my iTunes going.
    Fortunately I got a lovely IPad 2 from which all my music got immediately synchronised onto my MacBookPro,
    unfortunately I did not keep my TV shows (SherlockBBC!!!) on the Pad,
    and now I have no idea where to get those files.
    Seeing as my old Mac is no longer accessible there must be another way to get the movies and apps that I didn't keep
    on my mobile devices. They can't be lost can they?
    Help please?
    Jo

    Hi,
    wow you're fast
    So, I tried your link, and that support page is for getting the purchased items onto your pad,
    which I of course tried, that would get me one step closer,
    but obviously I must be in one of those backward countries that doesn't allow so much
    (link 2 doesn't work for me so I can't check) but my purchased file only shows music and
    won't give me the option of tv shows...germany *****
    and would that change if i took my computer to another country and got a new apple id?
    (am i asking illegal stuff???)
    is there another way for the cloud/store to computer synchronisation?
    maybe the series was in cloud, my last cd backup is a bit old, and my tv shows
    might have been uploaded in my first cloud try out (didn't get very far in becoming acquainted with that one to be honest, but i did good once i think)
    thanks for the attempt to help though
    tried out some new stuff

  • How to insert a new field in the Report Designer

    Hi all.
    I have a query and a report, but the query evolve.
    We have a new key figure (inside rows).
    In the report designer, I check the data provider.
    The new key figure is added in the catalog field.
    Now, I would like to insert the new field in the report.
    I add a new row in the report structure but it isnt what I want.
    In this case, I add a second row inside an another keys figures block.
    I want to create a new block for my new key figure
    Thanks for your help
    Céline

    Yes, key figures is in the field catalog.
    But When I do that " Insert a row ", Report designer create a " row 2 " below another key figures.
    And it isn't what I want. I want a new block .
    For exemple in the tab report structure (My new key figure is "Margin")
    I do that
    Group Level 1 : key figures
             Detail Area
                      Sales Amount
                                   row1
                                          cell1
                                          cell2
                      Cost
                                   row1
                                          cell1
                                          cell2
                                   row2 ( the new row added)
                                          cell1
                                          cell2                     
    But I want that:
    Group Level 1 : key figures
             Detail Area
                      Sales Amount
                                   row1
                                          cell1
                                          cell2
                      Cost
                                   row1
                                          cell1
                                          cell2
                     Margin
                                   row1
                                          cell1
                                          cell2                     
    Thanks for your help

  • New Element in the Container of PFAC

    Hi ,
    I have new requirement in my Project. When the User is creatign support message instead of going to the central team it should be routed by Region wise , As my client has the requirement based on the Component with Region Support Team should be determined.
    For the same i have check the possibilites in PFAC - Though there is the possibility of creating new Element Like Region and Country . After maintaining Attibute values for it. Still system is not determing right Support Team.
    Any body who have an idea on this . Especially on Containers in PFAC.
    Please provide your valueable inputs. Thank you.
    Regards,
    Amrita

    hi Amrita,
    1. copy the rule
    the best is to copy the rule 14000141 with PFAC_RESPO (the container contains the info you need) into a new rule.
    you need to assign the new rule to your package (Z_ERP for example)
    2. change the rule you created
    you go in change mode
    in the responsibilities tab of the rule you need to create all the filter that will lead to different teams
    you click on the create button to create the filter you want and then you need to assign (right click on the line you have created) the corresponding support team
    3. schedule the action with the right parameter
    Once this is done you need to schedule the action SLFN0001_JR_FIND_PARTNER with the corresponding condition (you just created ) and the partner_fct SLFN0003
    pay attention the user interface is not very obvious and sometimes you are quicked out from PFAC_RESPO
    I hope it helps
    feel free to ask
    br Xavier

  • ReGeneration of a task form after adding new element in the payload

    Hello,
    I have a question concerning the re-Generation of a task form
    In a first step we have made a BPM Process with a Human task. We have generated the task form.
    In a second step we have changed the payload definition in the Human Task (i.e adding an attribut).
    How can we re-generate the existing ADF form or modify the Data Control wihtout creating a new ADF project ?
    Thanks,
    Grégoire.

    When you use the auto generate task form feature, it creates a new project for the form. You can also use the manual generate function to add a form to an existing project. But, you can't replace an existing form with the new one this way.
    You could update an existing form to access the new data element (theoretically - though you'd have to do a bit of manual puttering around) but if you have not customized the form, there is no benefit in doing it this way.
    Heidi.

  • Why isnt Indesign CS5 showing "missing" fonts in the same way as previous versions?

    A font in our layout is not displaying as italic (this is one of those situations where there are several weights in a font family and the italic is called Gotham Book Italic and not just Gotham Italic) and not highlighting at all in the layout with the pink box.
    When you select the problematic type, the window shows it as [Italic] which would be fine on its own but when I go up to FIND FONT to find and replace all instances with the proper Italic font, it doesnt show up at all as a font, let alone as an issue.
    So far, purchasing CS5 Design Premium seems to have been more trouble than its worth.

    I think maybe it would be a good idea to run the file through .inx or .idml. See Remove minor corruption by exporting

Maybe you are looking for