Dreamweaver FluidGrid code gets destroyed by BC editor.

I'm trying to move a website over to HTML5, so I created a new template in Dreamweaver New > Fluid Grid Layout
The resulting html5 code is below, however when I paste it into a blank template in BC, the conditional statements (lines 2-7):
<!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
<!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
<!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="">
<!--<![endif]-->
get deleted by the editor. I know I could directly upload the template from Dreamweaver but if the BC editor is going to mess with it or any other HTML5 code then it's going to be a real headache. Any suggestions? Does BC not handle HTML5 or conditional statements?
<!doctype html>
<!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
<!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
<!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="">
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Untitled Document</title>
<link href="boilerplate.css" rel="stylesheet" type="text/css">
<link href="css/fluidgridlayout.css" rel="stylesheet" type="text/css">
<!--
To learn more about the conditional comments around the html tags at the top of the file:
paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
* insert the link to your js here
* remove the link below to the html5shiv
* add the "no-js" class to the html tags at the top
* you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="respond.min.js"></script>
</head>
<body>
<div class="gridContainer clearfix">
  <div id="div1" class="fluid">Use Insert Panel for additional Fluid Grid Layout Elements. Note: All Fluid Layout tags must be contained within the "gridContainer" div tag.</div>
</div>
</body>
</html>

None, You should not be having those when you go into editors.
Your not coding your site through the admin WYSIYG are you?
IF you are a partner at the top there is the "Developer" tab but if your not then you just get your prefered coding application, code your site and FTP your templates and layouts.
If your in a blog post and you got html head and body etc in there your not implenting your BC site correctly. You should have that in your template and apply the template to the blog itself and modify your layouts to get the layouts you want.

Similar Messages

  • Can I include both CSS and HTML codes in one Open HTML Editor.

    Somehow Cell phones are not properly reading css codes. Is there any way to include both CSS and HTML codes in one Open HTML Editor?

    Hammad, their code is fairly mobile friendly.  Per my other discussion with you ( http://topliners.eloqua.com/thread/8532 ), Eloqua's code is responsive for the most part.  Most of their issues lie with the styling of the email where you will get different fonts and different sized fonts throughout the email and some other minor display issues.
    What you are trying to accomplish is extremely difficult to do because you do not have the access to the HTML to better control how the responsive template works which is why the Eloqua templates (and most ESP templates) stick to the more basic side of emails.
    If you want to use Eloqua's WYSIWYG to make their responsive email you can do so, but I would recommend deleting all their body text before editing anything because of the inconsistencies in their code.  Otherwise, I think you would be better off coding the emails outside of Eloqua using a 3rd party editor whether it's something more robust like Dreamweaver or Coda, or whether you feel comfortable working in a more text environment with programs like Notepad++ or Brackets.
    At the end of the day remember you are paying Eloqua for these and if you choose to stick with the WYSIWYG and you are not getting the results you expect you need to tell Eloqua through your support channels.

  • My code is destroyed

    Hello.
    After downloading my files from a FTP account my files is
    getting destroyed. When I open them in Dreamweaver I get extra line
    breaks after every line.
    The code is opened as usual if I open them in notepad or some
    other text programs.

    Is your host server a Windows or *nix server? What is your
    Preferences
    setting for PREFERENCES | Code Format > Line Break type,
    in DW?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "KittyBox" <[email protected]> wrote in
    message
    news:fevj1v$mt1$[email protected]..
    >I do know about the word wrap, but that's not the
    problem. The code has 50
    > lines of code (example), but when I open it in DW every
    line gets a new
    > line
    > after, so the document is than on 100 lines.
    >
    > The problem is not the design, but the readiness of my
    code. Some of my
    > documents has 500-1000 lines of code, so when every line
    has a blank line
    > after
    > it gets messed up and hard to read.
    >

  • JSP session getting destroyed when second user logs in

    Hi,
    I am facing a session related problem in a small login program in jsp. I am using three jsp pages, login.jsp (user logs in), page1.jsp (creates a session and stores username) and page2.jsp (accesses session).
    Login.jsp:
    No jsp actually. Just a simple html form.
    Page1.jsp:
    String name=request.getParameter("Name");
    session=request.getSession(true);
    session.setAttribute("Name",name);
    Page2.jsp:
    session=request.getSession(false);
    if(session.isNew())
    System.out.println("new session created");
    String name=session.getAttribute("Name").toString();
    As expected, it works like session getting set at page1 and used at page2. It works good if users log in one by one. The problem arises when 2 (or more users with different logins) try to access the page at same time. When a new user logs in, the previous user session gets destroyed (session.isNew() becomes true and session Id changes).
    Is it the way I am using sessions (missing something), or there is some setting in tomcat server to specify maximum number of logins (sessions that can be handled).
    Regards
    Kamal

    Hi,
    Thanks for reply, but I guess the problem is not clear. Let me explain..
    A user logs in, he reaches first page (page1.jsp), here session is getting set. Then user goes to page2.jsp where application retrieves the information from session and uses it. It works all well.
    When two (or more) user logs in.. First user logs in, he reaches page 1, session is set. But then another user logs in (different id) and a session is set for him as well. Now the problem here is that session for first user gets destroyed at this point, which is unexpected (two sessions should not conflict, on different machines).
    Additionally, the problem does not happen necessarily at second login. eg. sometimes 4 users log in and when fifth one logs in, fourth gets logged out (session gets destroyed).
    I am not able to figure out, whether the problem is in code (given in first post) or there is some tomcat setting responsible for this behavior.
    Regards
    Kamal

  • ServletContext is getting destroyed for unknown reasons with WL 8.1.4

    Our application is working fine untill we used WL 8.1.3. Recently we moved to WL 8.1.4. We have an issue with ServletContext as it is getting destroyed in one particular usecase. ServletContext is getting destroyed and reinitiated, which is causing nonSerializable exception.There is nothing obvious in our code which is causing servletContext to get destroyed.
              Is there any way to know the reason/how servletContext is getting destroyed.

    It might be helpful to use a ServletContextListener and print the stack trace from the destroy callback.
              -- Rob
              WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • NetBeans 6.9 bogging down as code gets bigger

    Sorry if this is slightly off-topic, but I notice that NetBeans IDE seems to increasingly bog down the longer my code gets...that is, my typing out-paces the changes in the editor (and I'm not a fast-typist!). Is there a tweak I can do to help this?

    You can tweak the jvm options in etc/netbeans.conf with Xms, PermGen, ...
    It can avoid freeze.
    Edited by: Galien on 25 août 2010 15:19

  • Illustrator CS3: perfectly fine pdf gets destroyed when placing in Illustrator

    Hi!
    I am new to Illustrator, but I just dont get the problem. A perfectly looking pdf comes out looking all wrong when it is placed in Illustrator.
    This is how the diagram looks in pdf. Perfectly scalable.
    This is how it looks after beeing imported in Illustrator.
    Everything else that was imported form the pdf looks fine. Only this diagramm gets destroyed!
    Why does this happen?

    How was the PDF created? Printed, Exported? Some other method?
    If nothing else helps, you could do the following: it looks like the problems are only in drop shadows and text. You could delete both from the Power Point file, export, save or print the PDF. Then import into Illustrator and recreate shadows and text there.
    I don't think you could transfer the complete graohic from PP to Illy as vector anyway. So rather get away with as much as you can and then complete it.

  • How does committed date in STO- different company codes gets calculated

    Dear All,
    Please let us know How does committed date (ATP date) in the STO across different company codes gets calculated
    Regards
    Ahmad Idais

    Hello,
    RA is always a Company Code specific process due to the possibility of financial postings.  I think that your WBS structure better be reconsidered not to mix up different Company codes at different levels, but maybe having a parallel nodes for different Company codes.
    I also believe there is a consulting OSS note to explain the standard system behavior, just search the OSS.
    Since you already have a master data in place it must be quite easy for you to test how the system behaves.
    Regards,

  • HTML code gets displayed

    I'm running the Weblog service with OS 10.4.6. When creating an entry on a weblog most of the HTML code gets translated correctly; image links, html links, etc. But on certain HTML tags the code gets displayed and it's not translated. For Example if add a horizontal ruler the html tag is displayed.
    When I use the tag <hr /> the horizontal ruler does not get display only the tag gets displayed on the weblog.
    Is there a way to allow certain HTML tags to be translated?
    X-Serve   Mac OS X (10.4.6)  

    Hi,
    I will now attempt to shed as much light on this topic as possible...
    There are two main buffers where stuff gets stored before going to the ResponseOutput; the JspWriter out, and the pageContext.include(). (perhaps you are using this method in your tag). The include method sends it's stuff to the ResponseOutput immediately, where as the JspWriter does not... i don't think? The problem is that the include method is supposed to flush the JspWriter before processing the include and i found that it didn't do a very good job...
    "The current JspWriter "out" for this JSP is flushed as a side-effect of this call, prior to processing the include. "
    The solution is to manually flush the JspWriter before...
    JspWriter.flush();
    hope this helps!
    Randy

  • Own tag in code templates of the abap editor

    Hi,
    i think you all know the code hints and that you can define own code templates in the abap editor (at the options screen). As an information I dont mean the code patterns.
    So does somebody know how to define own tags for these code templates? Or where the logic is located for the code hints?
    Bye
    Richard

    Hi Richard,
    I know its pretty late to answer the question but just in case if you have not figured it out then see,
    Regards,
    Ankit.

  • Changed battery in laptop and now when trying to open dreamweaver cs3, I get "licensing for this product has stopped working"... contact customer support (thats a laugh).  So what now?

    Changed battery in laptop and now when trying to open dreamweaver cs3, I get "licensing for this product has stopped working"... contact customer support (thats a laugh).  So what now?
    it says:  You cannot use this product at this time.  You must repair the problem by uninstalling and then reinstalling this product or contacting your IT admin or Adobe customer support for help.
    Well it seems I am only able to install this on a maximum of 3 computers so if I uninstall and reinstall I may have used up all three.  What caused this in the first place?

    And most licenses extend to 2 machines; not 3.  Your computer's clock probably reset when you changed batteries. Is your computer's clock set to the correct date and time now?
    See Activation & Deactivation Help
    Nancy O.

  • SAP T-codes getting Complied

    Hello SAPers,
                         I'm getting complaints that t-codes getting complied on my ECC6.0 Server,
                         I have run SGEN after I applied Ehp3 but dont know why this is getting complied
                         Do anyone know why this is happening
                         Thanks in advance...
    Thanks,
    HariKrishna

    You might not have selected all the necessary components while running SGEN. The users might be accessing tcodes from the components which was not compiled by SGEN.
    Run SGEN again by selecting all the components or the necessary components and it will definitely solve this issue.
    Regards,
    Jazz

  • Why doesn't my Keychain verification code get sent to my fone

    Why doesn't my Keychain verification code get sent to my fone

    Hey Shad B.,
    This article should prove relevant to the issue you are experiencing:
    Get help using iCloud Keychain
    http://support.apple.com/kb/TS4644
    I'm not receiving the verification code via SMS.
    Make sure that you have a strong cellular network connection on your phone.
    Make sure that your phone number can receive SMS messages. You can do this by asking someone to send you a text message.
    Make sure that the correct phone number is associated with your account:
    iOS 7.0.3 or later: Tap Settings > iCloud > Account, then tap Keychain. Make sure the phone number under Verification Number is correct. If not, enter another phone number.
    OS X Mavericks v10.9 or later: Choose Apple () > System Preferences. Click iCloud, then click Account Details. Make sure the phone number listed under Verification number is correct. If not, enter another phone number.
    If you can't access a device that has iCloud Keychain enabled, you can contact Apple Support and verify your identity to get help completing iCloud Keychain setup.
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • MDB gets Destroyed

    Hi,
              I am using 9.2 with clustering environment. I am using UOO hence I am initialising my pooled beans with 5 beans.
              Due to exceptions in the transaction these beans are getting destroyed while new beans are not getting initialised by App.Server even though messages are pending on the queue. Some times the bean stops operating and one has to manual start resuming. How can we automate this operation?
              Is this expected behavior or I have to do certain configurations to achieve this?
              Thanks,
              Alan
              Edited by alan78 at 05/17/2007 7:17 AM

    Hi Alan,
              You appear to have hit the stalling bug I mentioned previously. One possible work-around is to use a container managed transaction and force redelivery by rolling back the EJB transaction.
              (The "transaction.rollback()" isn't related to the stall, as its for the bean managed transaction and so is unrelated to the container state of your non-transactional MDB.)
              Tom
              PS. Just in case your unaware, there's a not all that uncommon problem with MDBs that use bean managed transactions (BMTs): They can yield unintended "non-ACID" results without careful design to handle the potential for message redelivery when the BMT for the first delivery committed. If performance is a consideration, container managed transactions can often yield much higher throughput than BMTs...

  • When I try to install extensions into Dreamweaver CC, I get the following dialogue box in the Extens

    When I try to install extensions into Dreamweaver CC, I get the following dialogue box in the Extension Manager CC:
    "Failed to update database. The extension will not be installed."
    What may the problem be?

    Good day to all,
    The problem that we were having was caused by a case difference between two folders, like Carl pointed out. The line that created the issue was written like this:
    <file source="File1.htm" destination="$dreamweaver/Configuration/Shared/MyExtensions"  />
    <file source="File2.htm" destination="$dreamweaver/Configuration/Shared/myExtensions"  />
    The correct folder was with an upper case ("MyExtensions").
    The extensions are now installing correctly however it seems to take significantly longer to install than on previous versions of EM (even previous version of EM CC). Has anyone been experiencing the same long install time? This only happens on Windows OS. On Mac the extension is installed pretty fast.
    Any idea how I could lower the install time? We do have a long list of files. Maybe try to use only folders instead of individual files?
    Cheers,
    Andrei

Maybe you are looking for

  • Error while creating quotation in sales order verion ?

    Dear All, while creating an quotation in sales order version management getting an error. Sales Doc. MsgType Message Class        Msg.No. Message text            E       AM                        53 Specify either address number or address           

  • Service file under template folder missing

    Hai, We have installed ITS 6.2 in  a machine.  The templates folder of AGATE does not have service files like BWSP, PZ transaction. I think after installation standard service files should be in templates folder. Correct me if i am wrong.  Is there a

  • No. ranges for Internal order budget

    When i am changing the budget amount in Ko22 It is asking maintain interval 04 no. ranges for budgeting and planning pls suggest what is the logic behind why it is asking 04 and where i have to configure Regards Eswar

  • No Boundary Event in Automated Activity

    Hello Experts, I am developing a BPM in PI 7.31 SP4. I want to add a boundary event in my Automated Activity but when I try to add it the pop up shows me no Options. I expected to have at least a TehcnicalError but there are no one. As you can see in

  • RoomExtension: Room manipulation (parameters) not persistent

    Hi Folks, im going crazy with RoomExtensions. (ExtensionPoint: ON_CREATE_ROOM) I get the actual Room via the IRoomInfoReader. If I change for example the description - everything is fine. (I enter the room - and the description is changed) BUT: If I