? about persistent indicator and use of nav tag

Hi,
I have read Nancy O's informative article on persistent indicators.  I think I have everything almost working.  However, I get some errors when I validate on W3C validation service.
The errors I get are:
Line 22, Column 23: document type does not allow element "body" here
    <body class="live">
Line 23, Column 9: element "nav" undefined
    <nav>
Line 37, Column 10: end tag for "body" omitted, but OMITTAG NO was specified
    </div>
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
Any thoughts on what I have done wrong.  I have pasted the code for both the page and the relevant include below.  Also, I had two questions about the use of the nav.  What happens to my menu when it is viewed in an older browser that doesn't support nav?  Also, could one have an upper and lower menu bar using the nav tag with different CSS properties?
Code for the page
<!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>A Pilot Project - Official Website - Live Page</title>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css' />
<link href="apilotproject.css" rel="stylesheet" type="text/css" />
<meta name="Description" content="A Pilot Project Official Website Live Page" />
<meta name="Keywords" content="The Alan Parsons Project, Alan Parsons Project, Pilot, Alan Parsons, David Paton, Ian Bairnson, Eye in the Sky" />
<style type="text/css">
body,td,th {
    font-family: "Roboto Slab", serif;
</style>
</head>
<body>
<div class="container">
  <div class="header">
    <body class="live">
    <nav>
<!--#include file="bottomnavbarapilotproject.shtml" --></nav>
    <div id="englishlink"> <a href="index.htm"><img src="images/flaggb.png" width="25" height="25" alt="Link to English version of A Pilot Project website" title="English Website" /></a></div>
    <div id="japanlink"> <a href="indexjp.htm"><img src="images/flagjapan.png" width="25" height="25" alt="Japanese" title="Japanese Website" /></a></div>
    <div id="germanylink"> <a href="indexde.htm"><img src="images/flaggermany.png" width="25" height="25" alt="German" title="German Website" /></a></div>
    <div id="francelink"> <a href="index.htm"><img src="images/flagfrance.png" width="25" height="25" alt="French" title="French Website" /></a></div>
    <div id="spainlink"> <a href="index.htm"><img src="images/flagspain.png" width="25" height="25" alt="Spanish" title="Spanish Website"/></a></div>
    <div id="dutchlink"> <a href="indexde.htm"><img src="images/flagdutch.png" width="25" height="25" alt="Dutch" title="Dutch Website"  /></a></div>
    <div id="brazillink"> <a href="youtube.htm"><img src="images/flagbrazil2.png" width="25" height="25" alt="Portuguese" title="Portuguese Website" /></a></div>
    <div id="italylink"> <a href="index.htm"><img src="images/flagitaly.png" width="25" height="25" alt="Italian" title="Italian Website" /></a></div>
    <div id="twitterlink"> <a href="twitter.htm"><img src="images/twittericon.png" width="25" height="25" alt="twitter" title="Pilot on Twitter" /></a></div>
    <div id="facebooklink"> <a href="facebook.htm"><img src="images/facebookicon.png" width="25" height="25" alt="facebook" title="Pilot on Facebook" /></a></div>
    </div>
<!-- end .header -->
   <div class="content">
<p>With the reunion of Pilot and the completion of A Pilot Project, the band is now ready and available for world-wide bookings to celebrate its upcoming 40th anniversary.  What can you expect?  Only the best as the original flight crew David Paton (vocals, bass), Ian Bairnson (electric guitar), Stuart Tosh (drums) are joined by live crewmembers Kenny Hutchison (keyboards, vocals), and Calais Brown (guitar, vocals) to play Pilot's classic hits along with selections from A Pilot Project.   Promoters can use the form below to enquire about Pilot's availability. </p>
<!-- end .content --></div>
<div class="footer">Copyright 2014 © Pilot &amp; Blue Yonder Media Group<!-- end .footer --></div>
<!-- end .container --></div>
</body>
</html>
code for include (bottomnavbarapilotproject.shtml)
<ul>
        <li><a class="home" href="index.htm" title="Link to A Pilot Project Home Page">Home</a></li>
        <li><a class="news" href="news.htm" title="Link to A Pilot Project News Page">News</a></li>
        <li><a class="mp3s" href="mp3s.htm" title="Link to A Pilot Project MP3s Page">MP3s</a></li>
        <li><a class="buycd" href="buycd.htm" title="Link to A Pilot Project Buy CD Page">Buy CD</a></li>
        <li><a class="live" href="live.htm" title="Link to A Pilot Project Live Page">Live</a></li>
        <li><a class="links" href="links.htm" title="Link to A Pilot Project Links Page">Links</a></li>
        <li><a class="contact" href="contact.htm" title="Link to A Pilot Project Contact Page">Contact</a></li>
        <li><a class="mailinglist" href="mailinglist.htm" title="Link to A Pilot Project Mailing LIst Page">Mailing List</a></li>
        <li><a class="thanks" href="thanks.htm" title="Link to A Pilot Project Thanks Page">Thanks</a></li>
      </ul>
Any help or suggestion would be greatly appreciated.
Thanks,
Kirk

mojokk wrote:
Regarding my navigation menu bar, I had originally used a  <div id="bottomnavbar"> and then defined in CSS as #bottomnavbar to stylize/format.  However, when was having trouble getting the persistent indicator to work, while discussing this problem another frequent poster told me to not use div for menu bar and instead use nav tag which I did.  However, I still have the concern that folks with older browsers won't be able to view the menu correctly.  From what I have read, I could add the following to the head (after any CSS links) and then the nav menu would be able to be viewed correctly on older browsers.  Am I correct in that assumption?
<!--[if lt IE 9]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
Yes, you are correct - the script above makes any html5 tag such as <nav></nav> compatible with IE8 and below. but I personally don't really make much of an effort to support IE8 any longer.
mojokk wrote:
if that works, then it sounds as though that would be ok. But I have another page that would have 2 menu bars, one at the top of the header image and one at the bottom head image.  It sounds as though I wouldn't be able to use the nav tag for both since the vertical positioning of the text would be different, so I should go back and use divs for menu bars. Am I correct in this assumption?
You would give each <nav></nav> a class like:
<nav class="topNav"></nav>
<nav class="bottomNav"></nav>
<nav></nav> is just a container like <div></div> (see below) only with more meaning, ie navigation.
<div class="topNav"></div>
<div class="bottomNav"></div>
Then do as you have always done and style the content in the container/s:
.topNav {
.bottomNav {
mojokk wrote:
Also, if I have one page with HTML5 audio in it, should it still work in older browsers as long as I have the first four lines suggested above.  The script (based on jquery has a flash back up for older browsers).
I don't know much about audio, so can't help you out on this one.
mojokk wrote:
One other question, in my CSS I have defined my header's position as fixed (position:fixed;) so the content below will scroll up and one will still see header and menu bar.  However, when one scrolls on the page (Iphone) using touch screen, the text content can shift to right or left.  I assume I need to add something to the CSS of .content to prevent it from moving on the horizon.  Thoughts?
Difficult to say what is happening in this instance - you probably need to upload the page and provide a url so someone can take a look and see if they are seeing what you are seeing.

Similar Messages

  • What am I doing to make my screen zoom in while I  am using my mouse?  It zooms to about double size, and using the control key and mouse will not return it to its former size.

    When I am searching the internet and using my mouse, my screen will suddenly zoom in to about double size.  Clicking control and mousing will not return it back to where it was.  I have no idea what I am doing to cause this to happen or how to reverse it.

    Hi.
    If you're using a Magic Mouse, a double tap on the mouse with one finger will zoom.
    Double tap again to unzoom.
    Helpful?

  • General question about storage, networking, and using large amounts of data

    I have been using a powermac tower G5 up until now. I bought my daughter a macbook pro 15" i7, talk about a zippy little machine. What a screamer. I can't believe how fast it is with final cut express, Aperture, and Photoshop. I tend to use higher end stuff, video, photos, etc. Hence I need not only a good fast processor, but the storage....need lots of hard disk space.
    oh, did I mention I bought this for my daughter who's about to go off to college? Heh, when I'm home, she loses the machine to me.... *evil grin*
    Anyways, I haven't considered using a laptop before for me personally as I just don't care for the small screen size, no mouse, and things like that.
    Seems I've changed my opinion, esp seeing as the new mouse track pad is a game changer. I still am not crazy about the small screen size, but I can get over it.
    The one thing I can't get around is the small disk storage. I have 4 TB on my big machine. Between my video, photography, and music, I am nearing a full TB of just raw stuff. If I count all the things I've stored, especially finished videos I make of photography projects, well you can image the chomping that occurs on disk storage.
    So what is a man to do about storage?
    I'm really getting hooked on this zippy little machine. The idea of dragging it around is compelling. Having my work not tied to a desk is fun.
    but the lack of storage is sucky, terribly so.
    I have one possible option, taking the G5 and making it a server. I can use it for backup and high speed transfer, working on the transfer part today.
    I thought I'd poll the collective wisdom of the community and see what do you peeps think is the best overall way to handle such a situation?
    What is the absolute fastest best way to use external drives? Firewire 800 is ok, but when working with 400gb aperture database files....
    I'm hoping there is some way to start posturing myself to really use a laptop for my full computing experience.
    Or am I trying to make a small portable machine act like a tower? Is this not a reasonable hope at this point in time?
    I'm open to suggestions. I'm going to purchase something when my daughter takes this laptop with her to college. Either a new mac pro tower or laptop. I love the portability but need speed and massive storage.
    Thanks for opining.

    Storage:
    1. Replace the drive with a larger one. Up to 1 TB is now available for notebook drives.
    2. Get a portable external drive for additional storage needs. See the options at OWC as an example.
    Drive speed:
    1. FW 800 should be fast enough for your work. If the computer has an ExpressCard slot then consider a card supporting full speed eSATA. You may then achieve speeds closer to the internal bus.
    A laptop is not a tower so stop thinking of or comparing to your tower. Besides the laptop's speed compared to your G5 is more like comparing a Ford Focus to a Ferrari F150.
    As for "polling" opinions here: polling is forbidden by the forums' Terms of Use.

  • A zillion questions about setting up and using external hard drive

    Hello. I recently purchased a Cavalry 440GB CACE USB/FW800 7200 RPM 3.5 in Mac Formatted hard drive. My Mac is a Power PC G4 using OS X 10.2.8.
    After much back and forth with the Cavalry support desk, I was able to connect it to my Mac. (The USB cable included was not compatible--fortunately, my printer cable was.)
    Through Disk Utility I see that my Mac is detecting the hard drive, but there's no icon on my desktop. My questions are as follows:
    1. How do I get the icon on my desktop?
    2. It was suggested on this board to partition the hard drive. What exactly is partitioning, and is it necessary?
    3. If I do partition the hard drive, into how many partitions should I make it?
    4. Once the number of partitions is set, can that number be changed? In other words, can it be repartioned without erasing anything?
    5. My main purpose for getting the external hard drive is to move all my movies off my Mac. I'm sure I will want to back up other files as well. Should I create one partition for all the movies, and one for photos, one for files, etc.?
    6. Once I get the icon on my desktop, is transferring files as simple as dragging the files onto the icon?
    7. Once I move files to the hard drive, is it simple to move them back to the Mac if I need to use them again?
    OK, that's all for now. I appreciate your patience in dealing with all my questions! Thanks.

    Hello, 
    I'll try my best on the first seven. The remaining zillion minus seven questions will have to wait!
    1. If the drive really is Mac-formatted it should just appear. Firstly check that hard disks are set to appear on the desktop. In the Finder go to Finder > Preferences... >General tab and ensure that the box to show hard disks on the desktop is checked. If that doesn't work go to Macintosh HD > Applications > Utilities >Disk Utility. Select the drive in the left hand pane and then click on the "Erase" tab. Erase the disk and ensure the format is "Mac OS Extended (with Journalling)".
    2. Partitioning is splitting the physically drive into two or more volumes. This will allow you to compartmentalise your data. You will have two or more icons appear on the desktop if you do partition. Although they are on the same physical disk you will be limited on each of the volumes to the size you set at the time of partitioning. If you do partition the drive be sure to use the "Apple Partition Map" not "GUID Partition Map". The latter is for Intel Macs.
    3. Whatever you want. My experience is that too many partitions and you loose flexibility in your storage space. Personally on my external drive I have a partition that is exactly the same size as my internal hard drive. I then use that to do a regular clone backup. I then have a second partition for general use. This means I can put files on the external but still guarantee I have enough spare to backup fully.
    4. No. Not without third party tools.
    5. As I said above, in my opinion the best use is to create a partition for backup and a partition for all other use.
    6. Yes absolutely. However if you plan on moving libraries like iTunes or iPhoto then you'll need to show the applications where the libraries are again.
    7. Yes.
    Some extra pointers:
    A. Use Carbon Copy Cloner to backup your internal drive to the external. Clones are fantastic backups as even if the internal drive bursts into flames you will have an identical copy of all user data and settings: http://www.bombich.com/software/ccc.html (scroll to the very bottom for the version suitable for 10.2.8).
    B. Don't use USB to connect the hard drive it's not very fast. Firewire 400 is significantly faster and will allow the iMac to be booted from the external drive in an emergency (USB will not boot a G4 Mac).
    Hope that helps a little.
    mrtotes

  • About dynamic aggregation and using model

    I want to use model to realize dynamic aggregation.
    for example, I have a dimension named "product",it contains some values like :
    "apple" "orange" "beer" "beef" "bullfrog" "coffee"....
    I also have a "wastage" measure base on this dimension.
    I sometimes wanna see fruit wastage(fruit=apple+orange),sometimes breakfast food wastage(breakfast=apple+beef+coffee),sometimes other aggregation.
    how can I solve this problem? thanks for any suggestion.

    There are two answers depending on the scoping that
    you want the members to have. Both cases use the
    same model:
    DFN Foodmod MODEL
    MODEL
    DIMENSION product
    FRUIT = AGGREGATION('APPLE' 'ORANGE')
    BREAKFAST = AGGREGATION('APPLE' 'BEEF' 'COFFEE')
    END
    If you want the dynamic calculations to be persistent
    across sessions then you should make the model part
    of the definition of the aggmap.
    DFN Foodmap AGGMAP
    AGGMAP
    Relation Food.Food
    Model Foodmod PRECOMPUTE(na)
    END
    If you just want the positions to last for the session
    you can dynamically add a model to a pre-existing
    aggmap.
    DFN Foodmap AGGMAP
    AGGMAP
    Relation Food.Food
    END
    CONSIDER Foodmap
    AGGMAP ADD Foodmod

  • I get these updates and they never successfully install. And I get this annoying pop-up wanting me to update. I am about delete Firefox and use another browser.

    The updates never install. I get a failed message. Maybe you can suggest why this is happening.

    *1 '''[http://www.mozilla.org/en-US/firefox/all/ Download Firefox Full Installer For All languages And Systems]''' {web link}
    *2 '''[https://support.mozilla.org/en-US/kb/uninstall-firefox-from-your-computer Uninstall Firefox from your computer]''' {web link}<br>DO NOT remove your profiles.
    *3 After, reboot the computer. Then run the full installer.

  • Where can I go to read about the concept of set-up and use of Key Chain to automatically insert required passwords at internet sites?

    Where can I go to read about the concept and use of Key Chain to automatically insert required passwords at internet websites? I may or may not want to use Key Chain after I understand it.

    Key Chain basics

  • I'm horribly confused about student licensing and commercial use

    As the title says I'm horribly confused about student licensing and using it for commercial use.
    I currently have a Student Licensing version of Adobe Creative Suite 4 that I purchased through my school's journeyEd portal.
    Seeing how CS5 is now out I was browsing looking at prices (why not upgrade while I'm still a student, right?) and while browsing I bumped into one source that says that Student Licensing can not be used for commercial purposes, and this is when the confusion started. I remember reading before that we are able to use student licensing for commercial purposes, okay time to google search. I found one Adobe FAQ that says I can. .
    http://www.adobe.com/education/students/studentteacheredition/faq.html
    " Can I use my Adobe Student and Teacher Edition software for commercial use?
    Yes. You may purchase a Student and Teacher Edition for personal as well as commercial use. "
    and I found this old thread;
    http://forums.adobe.com/thread/314304
    Where an poster listed as an employee of Adobe states
    "There is no upgrade from the CS3 Educational Edition to the comparable CS3 editions sold in non-academic environments. If you have an educational version of for CS3 obtained legitimately (i.e., you qualified for the educational version when you obtained it), you may continue to use that software for the indefinite future, even for commercial use! You cannot sell or otherwise transfer that license, though! When the next version of the Creative Suite is released, you will have two choices: (1) If you still qualify for the educational version, you can buy a copy of that next version (there is no special upgrade pricing from one educational version to another; the price is already very low) or (2) you can upgrade from the educational version of CS3 to the full version of the next version of the Creative Suite as an upgrade from CS3 at the prices published at that time. "
    Okay cool, hmm what this? Adobe is asking me if I want to IM with live costumer service agent, sure why not? Then the conversation started and I asked her my question about using my CS4 license for commercial use, she asks for my product code and email to verify my product, then informs me I can purchase the upgrade version of CS5 and use that for commercial, okay great, but not really answering my question. I reword it and give her a link to that FAQ page it goes like this. ..
    "[CS Rep] : [My name], I would like to inform you that Adobe Student and Teacher Editions are not allowed for
    commercial use.
    [CS Rep] : However, you can upgrade your current software to a normal upgrade version, and you can continue
    using it for commercial purpose.
    [Me] : Then is the FAQ page mistaken? Because it is very misleading if it is. But thank you for the information.
    [CS Rep] : You are welcome.
    [CS Rep] : I apologize for the misleading information in the FAQ."
    . .And after that, I went back to being confused.
    SO my questions are. . . Can I or can't I use my Adobe Creative Suite 4 student licensing for commercial purposes? and If I purchase a Student Licensing of CS5 can I use that for commercial purposes as well?
    Sorry for the long post, I just want to be perfectly clear on what I can and can not do with my purchase.

    The rules differ in various parts of the world. In North America you can use it for commercial work.
    There are no student/academic upgrades. The pricing is so low that in many cases you're better off buying another full student license but you are eligible for upgrade pricing for commercial versions once you're out of school.
    You may not transfer the student license in any way.
    Bob

  • ADF FACES: HTML template text Layout is broken when uses ADF Faces tags

    This works fine:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
    </head>
    <body>
    <h:form>
    <table border="1">
    <tr>
    <td width="45%">
    <h:dataTable rows="5" bgcolor="Red" value="#{class1.names}" var="name">
    <h:column>
    <h:outputText value="#{name}"/>
    </h:column>
    <h:column>
    <h:outputText value="#{name}"/>
    </h:column>
    </h:dataTable>
    </td>
    <td width="55%">
    <h:inputText/>
    </td>
    </tr>
    </table>
    </h:form>
    </body>
    </html>
    </f:view>
    => a table is rendered with one row and two columns; in the first column the data table is rendered in the second the inputText
    Changing to ADF Faces tags breaks the layout:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA11" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA11/html" prefix="afh"%>
    <f:view>
    <afh:html>
    <afh:head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
    </afh:head>
    <afh:body>
    <af:form>
    <table border="1">
    <tr>
    <td>
    <af:table rows="5" value="#{class1.names}" var="name">
    <af:column>
    <h:outputText value="#{name}"/>
    </af:column>
    <af:column>
    <h:outputText value="#{name}"/>
    </af:column>
    </af:table>
    </td>
    <td>
    <h:inputText/>
    </td>
    </tr>
    </table>
    </af:form>
    </afh:body>
    </afh:html>
    </f:view>
    => at the begin of the page an empty table is rendered; below the data table is rendered and below the inputText
    It think it should be possible to layout the page with HTML template text and use ADF Faces tags.

    As of EA12 (and EA13) <afh:body> is what is known as a "rendersChildren" tag. It needs to do so in order to support partial-page rendering This means that template text inside it needs to be wrapped inside <f:verbatim>.
    For later releases of ADF Faces, I've filed an enhancement request to loosen up this restriction for <afh:body>.

  • What is extractor checker and use of it...?

    Hello,
    Could you please help to know about extractor checker and use of it.
    Thanks in advance,
    G Raghu.

    Hi..........
    The extractor checker comes packaged in Service API (SAPI), which enables you to create generic DataSources via transaction RSO2. The extractor checker has been available since very early SAP releases (both SAP_APPL including the 3.X track and BW including the 2.X track). It can be considered release-independent. It does not require the source system to be connected to the target BW system. For more information about SAPI, go to SAP Service Marketplace. You search SAP notes using the keyword u201CSAPI.u201D
    By running the extractor checker in the debug mode, you can learn a lot about the underlying application. I have been in situations where I had to work with application-specific standard extractors in areas that Iu2019m only vaguely familiar with. Running the extractor checker in the debug mode has helped me identify the base tables without a lot of effort.
    I have seen generic extractors delivering no data because of faulty logic/coding. The reaction on the BW side is usually one of bewilderment and disbelief. You can avoid this by running the extractor check before executing your InfoPackages from BW. Iu2019ll show you how to use this tool in a more effective way and explain why you might want to use it more frequently.
    For extraction of data we create datasource in the source system.............after that we replicate it in the BW side...............
    Now our datasource can extract data from any:
    Table or view
    Query
    Function mudule.................................
    Now to check whether thae datasource is working fine or not.........We have to go to RSA3 in the source system...........There we will give the Datasource name.................then we will execute.........then it will displsy the data it contains...............we can also check for a specific value......
    Hope this helps you..........
    Regards,
    Debjani........

  • Hi, I have quick question about use of USEBEAN tag in SP2. When I specify a scope of SESSION for the java bean, it does not keep the values that I set for variable in the bean persistent.Thanks,Sonny

     

    Make sure that your bean is implementing the serializable interface and that
    you are accessing the bean from the session with the same name.
    Bryan
    "Sandeep Suri" <[email protected]> wrote in message
    news:[email protected]..
    Hi, I have quick question about use of USEBEAN tag in SP2. When I
    specify a scope of SESSION for the java bean, it does not keep the
    values that I set for variable in the bean persistent.Thanks,Sonny
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • I am running 10.6.8 and using iweb for my web site. After several SEO analysis they all indicate I need H1-6 header tags. After looking at the source code I see there are none in iweb. Is it necessary to add? If so, how do I add H Tags to iweb.

    I am running 10.6.8 and using iweb for my web site. After several SEO analysis they all indicate I need H1-6 header tags. After looking at the source code I see there are none in iweb. Are they necessary to add?  Why would one add these tags and how do I add H Tags to iweb? And are there examples to look at? I am slowly learning about simple web design and assumed that iweb was stand alone without having to write code. Is this one of the reasons iweb is no longer supported? Thanks for looking at this!

    A simple text page like this:
    Heading
        sub heading
              text paragraph ....
    Is traditionally represented by html tags like:
    <h1>Heading</h1>
         <h2>sub heading</h2>
              <p>text paragraph ... </p>
    I would guess that the use of h1-h6 tags helps search engines to understand the structure of a page as the tags imply a certain structure.
    This can be compared to more generic tags like <div> that could represent any kind of content - and may be what iWeb uses (you'll have to check yourself).
    I would generally recommend that you use some kind of up to date blog/site building tool, perhaps Wordpress or Squarespace (I haven't used either one myself) that support current web technologies - this should reduce your SEO issues and make it easier to properly support mobile/tablet users.

  • HT1918 I have been using the same credit card for about a year and now it's telling me my security code don't match so it won't let me buy anything.... Any ideas

    I have been using the same credit card for about a year and now it's telling me my security code don't match so it won't let me buy anything.... Any ideas

    Is the address on your iTunes account exactly the same (format and spacing etc) as on your credit card bill : http://support.apple.com/kb/TS1646 ? If it is then you could try what it says at the bottom of that page :
    If the issue persists, contact your credit card company and verify that they and any company they use to process credit card authorisations have the correct information on file.
    And/or try contacting iTunes support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Using a control as both an indicator and control

    Hello,
    I have been search and reading for a few hours now and have finally decided to post. I fear I am not using the correct terms because I am fairly new at LabView.
    I currently trying to build a user interface that uses 9 different tabs [I am using the same tab structure as in the labview example code]. There is a set of variables that will need to be on 3 of these tabs in similar form. These variables include:
    2 boolean controls
    1 boolean indicator
    1 string indicator
    12 numeric indicators
    I would like to have all of these values be the same on the separate tabs at the same time.
    For example if I press one of the boolean controls, that same boolean control should now be activated on the other tabs as well.
    If it would be possible, please do point me in the right direction of how to go about doing this. (Also the proper terminology)
    Many Thanks,
    Buffalo960 

    tbob wrote:
    I don't think you can have the same instance of controls and indicators on separate tabs.  Two options:
    1.  Create separate controls on each tab.  Put code such that if any control or indicator in the list is changed on any tab, the other similar ones get changed programatically.  You can do this with an event structure and local variables or property nodes.  Lots of programming.
    I don't think that it will be a lot of programming. For example: if he has 5 controls and want to keep all of them synchronized, with only one Case of the Event Structure he can do the job, setting the 5 controls to trigger that Case when "Value Change" and use the Event Node "NewVal" to write the same value for all controls (including the control that triggered the event, but with a code this size it will not be a big deal to write the information a again to the same control).
    Thanks
    Dan07
    Attachments:
    Multiple Controls.vi ‏39 KB

  • In ITunes, my library was about 55 G. I have a Ipod Classic 160 G. I synchronised my IPod on ITunes and I checked the tag Convert songs with a throughput greater than 128 kbit / s ACC before synchronisation I took maybe 6 hours to synchronise, and af

    In ITunes,
    my library was about 55 G. I have a Ipod Classic 160 G. I synchronised my IPod
    on ITunes and I checked the tag Convert
    songs with a throughput greater than 128 kbit / s ACC before
    synchronisation I took maybe 6 hours to synchronise, and afterward my library was
    about 42 G. All my tunes, more than 9500, seem still be in library. Most of my
    library is from music purchased in ITunes store along with copies on my old CDs
    an some MP3 files from other discs. This is good for me but what happened?

    This is good for me but what happened?
    I don't understand the question...  Did something happen that you think should not have happened?
    It took such a long time to sync, because iTunes was converting songs with bit-rate higher than 128 kbps "on the fly" while syncing.  That takes much longer than just syncing the songs. 
    Also, since you have so much space on your iPod (compared to the size of your music library), you should not use that "convert to 128 kbps AAC" setting.  For songs that are encoded higher than 128 kbps, the conversion reduces sound quality.  You may want to uncheck Sync Music and Apply, to remove the songs on the iPod currently, and then sync it all again without the "convert" setting checked this time.

Maybe you are looking for