How does BC rearrange the head section?

and how can I disable that or take control of it?
I've been trying to make my site 100% html5 compliant. One of the things I need to do is place the Charset declaration right after the <head> tag. in my code it looks like this:
<!DOCTYPE html>
<html lang="en">
    <head>
       <meta charset="utf-8" />
    <title>LegionKreativ - Contact</title>
    <link rel="icon" href="images/favicon.ico" type="image/x-icon">
    <link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
    <meta name="description" content="Commercial Photography Services">
    <meta name="keywords" content="Photographer, Celebrity Portraits, Advertising Photography, Magazine Photography, Corporate Photography, Commercial Photography, Portraits, Headshots, Portrait Photography, Northern NSW, Northern Rivers, Lismore, Ballina, Byron Bay, Bangalow,">
    <meta name="author" content="Steve Rehberger">
    <link rel="stylesheet" href="css/bootstrap.css" type="text/css" media="screen">
    <link rel="stylesheet" href="css/responsive.css" type="text/css" media="screen">
    <link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
    <script type="text/javascript" src="javascripts/jquery.js"></script>
    <script type="text/javascript" src="javascripts/superfish.js"></script>
    <script type="text/javascript" src="javascripts/jquery.easing.1.3.js"></script>
    <!--[if lt IE 8]>
          <div style='text-align:center'><a href="http://www.microsoft.com/windows/internet-explorer/default.aspx?ocid=ie6_countdown_bannerc ode"><img src="http://www.theie6countdown.com/images/upgrade.jpg"border="0"alt=""/></a></div> 
     <![endif]-->
    <!--[if (gt IE 9)|!(IE)]><!-->
    <!--<![endif]-->
    <!--[if lt IE 9]>
    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> 
    <link rel="stylesheet" href="css/ie.css" type="text/css" media="screen">
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400' rel='stylesheet' type='text/css'>
  <![endif]-->
    </head>
    <body>
You'll notice that <meta charset="utf-8" /> is right at the top. Yet, when I view the source of  the page after it is served by bc it looks like this:
<!DOCTYPE html>
<html lang="en">
<!-- BC_OBNW -->
<head>
<title>LegionKreativ - Main</title>
<link href="/StyleSheets/ModuleStyleSheets.css" type="text/css" rel="StyleSheet" />
<script type="text/javascript">var jslang='EN';</script>
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/responsive.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/touchTouch.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/kwicks-slider.css" type="text/css" media="screen">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300" rel="stylesheet" type="text/css">
<script type="text/javascript" src="javascripts/jquery.js"></script>
<script type="text/javascript" src="javascripts/superfish.js"></script>
<script type="text/javascript" src="javascripts/jquery.flexslider-min.js"></script>
<script type="text/javascript" src="javascripts/jquery.kwicks-1.5.1.js"></script>
<script type="text/javascript" src="javascripts/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="javascripts/jquery.cookie.js"></script>
<script type="text/javascript" src="javascripts/touchTouch.jquery.js"></script>
<script type="text/javascript">if($(window).width()>1024){document.write("<"+"script src='javascripts/jquery.preloader.js'></"+"script>");}     </script>
<script>
jQuery(window).load(function() {     
$x = $(window).width();          
if($x > 1024)
jQuery("#content .row").preloader();    }     
     jQuery('.magnifier').touchTouch();               
    jQuery('.spinner').animate({'opacity':0},1000,'easeOutCubic',function (){jQuery(this).css('display','none')});     
</script>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-24121241-1', 'legionkreativ.com');
  ga('send', 'pageview');
</script>
<meta charset="utf-8" />
<meta name="description" content="Commercial Photography Services">
<meta name="keywords" content="Photographer, Celebrity Portraits, Advertising Photography, Magazine Photography, Corporate Photography, Commercial Photography, Portraits, Headshots, Portrait Photography, Northern NSW, Northern Rivers, Lismore, Ballina, Byron Bay, Bangalow,">
<meta name="author" content="Steve Rehberger">
<!--[if lt IE 8]>
            <div style='text-align:center'><a href="http://www.microsoft.com/windows/internet-explorer/default.aspx?ocid=ie6_countdown_bannerc ode"><img src="http://www.theie6countdown.com/img/upgrade.jpg"border="0"alt=""/></a></div> 
     <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<!--<![endif]-->
<!--[if lt IE 9]>
    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
    <link rel="stylesheet" href="css/docs.css" type="text/css" media="screen">
    <link rel="stylesheet" href="css/ie.css" type="text/css" media="screen">
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400' rel='stylesheet' type='text/css'>
  <![endif]-->
</head>
All the tags have been grouped and the meta tags have been pushed down....and I simply can't find any way to take control of or change that?

You can not control the head BC sorts at the moment.
Change it to -
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
And it should stay right after the head for that bit though.

Similar Messages

  • How can I edit the head section of a page made from a template?

    Humm,  I made a page from a template but now I cannot modify the <head> section...  I will need to add some HTML to the head section that will be different for at least this one specific page...

    Be aware that you CANNOT use the DW UI to add an editable region to the head. A properly made DW template always contains two editable regions in the head of the template: "doctitle" and "head".  If you do not have those, then as Nancy says, you will need to add them.
    To add an editable region to the head of your template page, just copy this and paste it in to some legal place in the head of the page (like immediately above </head>).
    <!--TemplateBeginEditable name="whatever"-->
    <!--TemplateEndEditable-->
    Change the name as needed.

  • How to create a link in the head section of BC template?

    Can anyone please explain so that even I can understand the reason why the following script does not work as I would expect?
    I am trying to append a line of html code to the <head> section of a Page Template.
    <script type="text/javascript">
    function loadScript() {
    if(window.location.href.indexOf("fish") > -1) {
    alert("the url contains the string fish");
    var csslink = document.createElement("link");
    csslink.setAttribute("rel", "canonical");
    csslink.setAttribute("type", "text/css");
    csslink.setAttribute("href", "http://www.xyz.com/fish/herring");
    document.getElementsByTagName("head")[0].appendChild(csslink);
    window.onload = loadScript();
    </script>
    Secondly if one cannot append to the <head> can one append to the <body> ?
    Any help appreciated.
    Kind regards
    PW

    Hello peterwulf,
    Looks like you're missing a } above the widow.onload. That should fix it.
    Hope this helps,
    Chad Smith - BC Gurus

  • How to get SYSDATE in the header section dynamically when we run the report

    I have one more issue may i know how can i get the sysdate in the header section when i run the report.
    as we have the requirement like this
    In the header section
    Run Date : ("sysdate").
    How to get the sysdate dynamically in the RTF template, when i go across the google i found that header and footer section did not allow form fiields .
    So is there any way to do it.
    Thanks in Advance.
    Have a Nice Day.

    You cannot insert form fields in the Header section, but you can just insert the code to achieve this. For example: insert this in the header section to view the sysdate: You could format the date as you would like..
    <?xdoxslt: sysdate(‘YYYY-MM-DD’)?>
    Since you are new to BI publisher, search the forum, review the Report Designer's guide for BI publisher. You will find that most of your basic questions are answered there and there are examples as well.
    Thanks!

  • Report does not show the main section while calling from forms 6i

    Hi
    I am running report from report from forms 6i but is does not show the data in main section, where as the data in the header section is ok.
    But when i run the same report independantly from report builder it show the both header and main section with relevent data.
    pl solve the matter
    thanks in advance

    can you tell me more about this, you might check if you are using different users when you call this report or if the user has all privileges to see all tables in this report

  • How do I rearrange the order of items in a reminder list?

    How do I rearrange the order of items in a reminders list?

    ICal Reminders won't sort on the actual device it was intended for - the Iphone
    I just talked to Apple Express service over this problem.  I went to the trouble of transferring my to-do list onto icloud Reminders - where each item asked for a priority ranking and where you are then given options for how to sort  all the Reminders you entered - so that it can actually be useable as any Calendar/time management system would be.   I chose "by priority" of course, but you can also choose alphabetically, etc.  It must be said, at least to Apple, apparently, that the point of doing all this is so that the Reminders are available on your actual device - my iphone.  The Reminders all synced immediately to the Iphone.  However, the Reminders list is an unsorted jumble on my iphone.  Even when I tap out a Reminder on my iphone itself and choose a priority, the item remains at the bottom of the list as the last thing I typed in.  Apple Express Support "explains" that the priority ranking and the sorting choices are "not supported" on the device you want to use them on - the iphone.   They offered me "an article" that explains this in detail.   In other words, engaging with the Reminder function and choosing priorities and choosing sort orders is all just a cruel joke wasting your time.  I would have been better off just printing off my Reminders list on paper and circling the high priority items in red ink.  Oh - but you can't print it out either.
    Unbelieveable.  Apple's ICal Reminder function actually and actively leads you to engage with completing details and choices that don't even function, or in other words - aren't "supported" on the Apple device they are stated to be designed for.  Is there a device on which this function is actually supported?  "Not at this time"
    The only way to have your to-do list sorted on the iphone is to assign a calendar date for each one of them and then they only appear on that specific date.  You would not be able to view your whole list in anything other than the order you happened to enter the items.  No calendar/time management system I know of makes you put a date on every item in a  task list - some tasks have a due date, but most don't.  And every calendar/time management system allows you to sort your list, or view your list in a sorted order.   And print it out also.
    Apple advertises this Icloud Ical/Reminders system as a time managment tool and fails to tell us that vital functions don't even work on your iphone.

  • I'm in a multi-page document, how can i rearrange the pages or insert blank pages in front of pages? Also, is there a way to show the ruler both horizontally and vertically?

    I'm in a multi-page Pages document, how can i rearrange the pages or insert blank pages in front of pages? Also, is there a way to show the ruler both horizontally and vertically?

    Not on my document. I have a 7 page document open. The "flashing vertical bar" is at the top of page 3. I have the thumbnail view showing. I click page break and two blank pages are added to the end of my document. I have to scrool thru the pages to see that the 2 pages were added as they do not appear in the layout view... I'm not sure if it is inserting a "section" as it adds two blank pages.. But I am clicking on "INSERT PAGE BREAK".. So guess there are still a lot of bugs to fix..
    Thanks again

  • Why won't the header section of my Classic document print?

    When I print a Classic document, printing begins at the bottom of the header section. The header section itself and any text therein is just ignored. (The header text is definitely within the page margins and the print margins, and the header dimension appears in the LaserWriter 8 Print dialogue box).
    This is a great embarrasment if you are working with pre-printed stationery incorporating letterheads; to achieve the desired result you must add the header dimension to the letterhead dimension to find the insertion point setting for the first line of your document !!
    Does anyone have a solution? The only clue that I can offer is that the printer is connected via a USB to parallel converter cable. (And there are no problems with OS X documents).

    Hi, Roger. Every printer has a hardware-delimited maximum print area, and that area may in some cases be further restricted by the printer driver used. The position of that defined maximum-print-area rectangle on the page is also controlled by hardware or software or both. Any limitation that is imposed by your printer itself will, of course, not vary from OS X to OS 9 or Classic mode. But if your OS X driver and your OS 9 driver impose different print area restrictions, you'll see different results in Tiger and Classic. And if you're not using any OS 9 driver, as I suspect may be the case, then you may have to conclude that your old Classic apps (isn't WriteNow wonderful? I still use it too) just aren't as compatible as you might like with Classic printing in Tiger, or with your Gimp-Print driver, or with your parallel-to-USB adapter. There's an awful lot in the equation that was undreamed-of in 1994.
    If there's no other driver option for you to try, then I strongly suggest buying a new, Mac-compatible printer to replace the old BJ-30, which was never meant to be used with a Mac in the first place.

  • How does one rearrange photos in an album without dragging?

    How does one rearrange photos in an album without dragging?

    View -> Sort Photos lists the various automatic options.

  • Can I place a html5 or flash video of a surfer in the header section?

    I have been asked to build a home page with a video of a surfer riding a wave at a fun surfing location. We think it would be cool for the web user to come to the home page and right away watch a surfer catching a wave and riding accross in the video in good size area of the header section of the home page. Not sure what technology is available to best do this...html5 or flash or even java any suggestions would be helpful.
    I have been browsing the web to see other similar examples and ideas to get a feel for the best way to approach this.

    Yeah I get it. You want a video banner. It doesn't really matter where you want your video placed on your page. The point is you want a video on your page, right? I think you're over-thinking it, dude. It doesn't matter to techies if the video is of a surfer at a popular surfer location. It could be a video of a surfer doing a bellyflop in a mud puddle for all it matters. That's irreclevant to the technical discussion. Try to boil your problem down to the basics here. I'm just wondering what your problem is. Are you having a problem embedding a video or what exactly? If you're having a problem embedding a video on your page then I suggest using YouTube as a cross browser solution. You can use the embed parameters to customize your YouTube video to do things such as autoplay, loop, custom size, hide YT controls, etc. Give it a try for a simple solution.
    best,
    Shocker

  • How does java support the concept of destructor?

    How does java support the concept of destructor?

    @KunalSurana: before you flood the forum with basic questions, do us a favour and read.
    [Sun's basic Java tutorial|http://java.sun.com/docs/books/tutorial/]
    [Sun's New To Java Center|http://java.sun.com/learning/new2java/index.html]
    Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    jGuru
    A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch
    To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    [Yawmarks List|http://forums.devshed.com/java-help-9/resources-for-learning-java-249225.html]
    [The Java Developers Almanac|http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance]
    [http://javaalmanac.com|http://javaalmanac.com]
    Bruce Eckel's [Thinking in Java(Available online.)|http://mindview.net/Books/DownloadSites]
    Joshua Bloch's [Effective Java|http://www.amazon.co.uk/exec/obidos/Author=Bloch,%20Josh]
    Bert Bates and Kathy Sierra's [Head First Java|http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance ]
    James Gosling's [The Java Programming Language|http://www.bookpool.com/sm/0321349806]
    Gosling is the creator of Java. It doesn't get much more authoritative than this.
    Joshua Bloch and Neal Gafter [Java Puzzlers.|http://www.javapuzzlers.com/]

  • How does one change the font size for folders and/or file lists in the Bookmarks Library?

    How does one change the font size for folders and/or file lists in the '''Bookmarks''' Library?
    Since the upgrade to version 9.0.1 of Firefox, the Bookmarks feature changes are confusing me. They seem to be confusing themselves as well. The list of bookmarks has changed. The font size is so small that my aging eyes cannot read it without fogging the screen with my breath. Some folders are out of alphabetical order (where I know they were previously good), and some are missing altogether (folders to which I frequently add references).
    As for missing or deranged files or folders, was there something that I should have done or now need to do to recover those after the upgrade (or before)?
    With regard to font size,
    1. there is no “Edit Bookmarks” or like option to edit the list in this version
    2. the “zoom” option in the “view” list of functions is greyed out when in “Show All Bookmarks” window
    3. expanding the browser window has no effect on font size
    4. “Preferences” settings for font size has no effect in that window either, including advanced settings
    5. “Help” offers none that I can find.
    Can any of you Help?!?

    Maybe this extension helps:
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/

  • I have just updated to Pages 5.1 and now the templares which I have saved do not displat the header and footer which they were saved with in the previous version.  How can I have the header and footer included when I open a template?

    I have just updated to Pages 5.1 and now the templares which I have saved do not displat the header and footer which they were saved with in the previous version.  How can I have the header and footer included when I open a template?

    That is becuase Pages 5.1 has numerous unnounced surprises for the unwary user.  Among the surprises:
    - it strips out images from headers and footers without warning
    - it strips out bookmarks without wanring (yes, all those bookamrks you laboriously put into a document: poof! Gone.)
    - it strips out alternating left/right margins, without warning.
    There are many more suprises, as you'll see from glancing through these discussions. They fall into two main categories: things that are present in version 4.3 but that are missing in 5.1, things like
    -mail merge
    -meaningful Applescript/Services support
    -non-contiguous text selection
    -ability to set defaul zoom
    -ability to see comments while editing
    -ability to print comments
    -ability to read RTF files
    -ability to drag in hyperlinked ted from a browser
    These about about 90 other features are gone.
    Then there are the bugs.  Hyperlinks do not reliably export to a PDF file any longer. There have been multiple problems with printing report. Some fonts place stray characters in the headers.  Many reports of the program crashing, courrupting files, etc.
    Fortunately for you, the previous version of Pages is still on your system.  Export any documents you may have created or edited with Pages 5.1 (another great surprise: files created with version 5.1 cannot be read by any previous version of Pages: not just 4.3 but even 5.01!).  Then trash 5.1 and use 4.3 until (unless?) it is stable and has a reasonably robust feature set.

  • HT1349 how  do you remove the header and footer from a document

    how  do you remove the header and footer from a document

    It depends upon the app you are using.

  • How does this happen: The picture of recent apps you get when double clicking the home button showed in Settings-Wifi that I had been connected to a network I have not been near for two months. Its not a recent "image" of Settings-Wifi. Can anyone explain

    How does this happen: The picture of recent apps you get when double clicking the home button showed in Settings-Wifi that I had been connected to a network I have not been near for two months. Its not a recent "image" of Settings-Wifi. Can anyone explain?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

Maybe you are looking for

  • Cannot transfer music from iTunes to iPod Shuffle

    Still having difficulty getting my head around how this iTunes stuff works.  I logged into iTunes and redeemed a $15 gift card by entering the code on the back.  I saw the $15 balance added to my account.  I proceeded to buy two songs, but now cannot

  • I have Windows 8 and Itunes 64 bit.  Not able to synch any iphones or ipads with this version.

    I have Windows 8 and Itunes 64 bit.  Not able to synch any iphones or ipads with this version.

  • Reset Button

    Hi, I created a manual search page and put in a resetButton. When i run the page and click on the reset button it clears the input feilds BUT when I click on the submit button and then click on the reset button it doesnt clear the previous input fiel

  • "All Photographs" collection empty in 2.6

    I recently installed Lightroom 2.6.  In my folders menu on the left of the screen, I can see all my folders, and when I select one, thumbnails of the pictures in it appear as they should.  However, if I select "all photographs" I get a "no photograph

  • QM Related Error at the time delivery

    Dear All After the sales order completion,   i am getting this error message while doing delivery process. 1. Only 0 EA of material 12  available 2. Delivery quantity must be entered for the item 3. Error creating inspection lot for material 12 Befor