New selection disappears from sectionlist when I add rules (was: New section in CSS)

When I try to make a nex CSS for a section it disapeasr from the sectionlist before I start to add rules. Why?
And why does my (succeded) CSS rules not show up in the codesection?
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>ATL Webside</title>
<link href="ATL WEBside.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="Wrap">
  <header id="Topp">Content for  id "Topp" Goes Here</header>
  <nav id="Nav">Content for  id "Nav" Goes Here</nav>
<aside id="Side">Content for  id "Side" Goes Here</aside>
  <section id="foto">Content for  id "foto" Goes Here</section>
  <section id="sek 1">Content for  id "sek 1" Goes Here</section>
  <section id="sek 2">Content for  id "sek 2" Goes Here</section>
  <section id="sek 3">Content for  id "sek 3" Goes Here</section>
  <section id="sek 4">Content for  id "sek 4" Goes Here</section>
  <section id="sek 5">Content for  id "sek 5" Goes Here</section>
  <section id="sek 6">Content for  id "sek 6" Goes Here</section>
  <section id="sek 7">Content for  id "sek 7" Goes Here</section>
<section id="sek 8">Content for  id "sek 8" Goes Here</section>
<section id="sek 9">Content for  id "sek 9" Goes Here</section>
</div>
</body>
</html>
BR Nille

I ment new "Selection" :-)

Similar Messages

  • The airplay icon has disappeared from my desk top. It was there two weeks ago, so I can't watch movies I've downloaded from iTunes and flick them over to my TV.

    The airplay icon has disappeared from my MAC desktop. It was there two weeks ago when I successfully used it to 'flick a movie i had purchased from iTunes over to my tv. Also, if I rent the movie through iTunes, why (because of the above issue) when I go to 'Purchased' it doesn't display as an option when actually using Apple TV, it doesn't display but when I go to rent it again a message comes up saying "you have already rented this movie, do you want to rent it again"? Frustrated!!

    Ok Fellas, let me give you a clue:  Games, particularly those that make heavy use of graphics and sound are notoriously power hungry.  In fact, when I was in the Navy many years ago, the folks working on the NTDS (Navy Tactical Data System)  computers used a version of Space Invaders to load test the AN/UYK-43 computers.
    I have also noticed that all of my laptops (I have a brand new Toshiba dual core, an older Toshiba single core, plus 2 Dell dual core machines) have significantly shorter battery life when I play Company of Heroes than when I am just reading e-mail or surfing the 'Net.  I have also noticed the same behavior when I play games on my 4th gen Touch and my iPhone 4.
    The fact is, iOS 5 did make some major improvements as well as adding some nice functionality like iMessage, wireless synch, and such, but the down side is that depending on how you use the device battery life can be shorter that what you may have experienced with pervious versions of iOS.  Its just the nature of the beast...
    We now return you to our regularly scheduled programming.....
    Oh John....  Oh Marsha.....

  • Recordsets disappear from menu when adding mysql_query ("SET NAMES 'utf8'"); below the connection in php

    I hope someone can help with this. I'm trying to create a
    dynamic site using dreamweaver CS3, with php5 and mysql5 in the
    background but I'm having difficulty with recordsets disappearing
    from the server behaviour menu when tweaking the code to allow set
    characters or set names for utf8.
    For a while, I've been having a problem getting my
    dynamically generated master list pages (eg lists of jobs) to
    display international characters like an accented french e (and
    other languages) and for these to display correctly when viewed in
    phpmyadmin also. So, I've placed headers at the top of the page for
    utf8 and created the content metatag for utf8 in the page code.
    Where needed I've added ENT_QUOTES utf etc for htmlentities and
    added accept-charset utf-8 in the <form> action area.
    (one thing I haven't done in the form action area is add
    <enctype="multipart/form-data">, but I'm not sure if this
    will make any difference)
    In the backend, the innoDB database is collated and built
    using utf8_unicode_ci. I'm on a shared host -so can't directly
    access php.ini or adjust the connection settings through
    phpmyadmin. But I can write .htaccess files (currently with the
    defaultcharset set to utf8 also).
    At this point - all list pages display the correct characters
    when retrieved from the database - indicating that the headers are
    working. But - in phpmyadmin the letters are garbled, and garbled
    on return on update forms (content management). I solved this by
    adding the &#xxxx; equivalents in insert and update forms to
    display the text correctly on the list pages - but again it's not
    convenient to see all of this in phpmyadmin, as I'd like to be able
    to read it there as it should be, and to dispense with the need to
    add &#xxxx references on the insert and update forms.
    So...a bit of searching, and I read that in order for the
    international characters to display in phpmyadmin correctly, I
    needed to amend my php page code so that for all instances where I
    see the connection to the database, before the SELECT, INSERT and
    DELETE queries, I need to add either mysql_set_charset('utf8',
    $connection) or use three lines of code referencing mysql_query SET
    NAMES, SET CHARACTER SET and SET COLLATION_CONNECTION for utf8.
    I did that, and it removed all of my recordsets in the
    sidebar menu! Not too good. I'm left with a task of rebuilding
    pages now.
    So I placed the mysql_set_charset line in the connection.php
    file in the DW Connections folder below the connection there
    instead. [I didn't precede the mysql etc line with a $ sign - I
    wonder if that's the issue?]
    With this change I could use the Insert forms to add the
    international characters directly into the database and see through
    phpmyadmin that all was hunky dory. But then the problems came with
    first loads of the master list page.
    So, I can get international characters into the database now
    (which is a step in the right direction for me), using an insert
    form on the website, but I still can't get the international
    characters to display on the returned page on first loading eg on a
    list of jobs. Note that the detail pages display fine when clicking
    the master links, and when I return from the detail page back to
    the master list - the characters are ok. They just don't seem to
    display when the master page loads for the first time which is
    really perplexing me.
    I suspect that I need to add the mysql_set_charset line below
    the $connection and before the selects, inserts etc at all
    instances on the webpage, but this just removes the recordset from
    the menu, so this doesn't seem to be a good option.
    Can anyone point me in the right direction as I'm been stuck
    on this for ages. It may be something simple like adding $ in front
    of the mysql_query, but then again maybe not.
    I've tried other forums - but people seem to be content with
    viewing but not offering assistance. I don't believe that what I'm
    doing here hasn't been done before....all I want is for my pages to
    display international characters and for these to display correctly
    in phpmyadmin so that when I insert, update and delete records
    using webforms I don't have to resort to using &#xxx inserts.
    Help please!

    .oO(08Green)
    > So...a bit of searching, and I read that in order for
    the international
    >characters to display in phpmyadmin correctly, I needed
    to amend my php page
    >code so that for all instances where I see the connection
    to the database,
    >before the SELECT, INSERT and DELETE queries, I need to
    add either
    >mysql_set_charset('utf8', $connection) or use three lines
    of code referencing
    >mysql_query SET NAMES, SET CHARACTER SET and SET
    COLLATION_CONNECTION for utf8.
    Usually you only need to send a SET NAMES 'utf8' right after
    the
    connection to the DB has been established. That way all data
    that is
    transferred between the DB and your script will be handled as
    UTF-8.
    > I did that, and it removed all of my recordsets in the
    sidebar menu! Not too
    >good. I'm left with a task of rebuilding pages now.
    >
    > So I placed the mysql_set_charset line in the
    connection.php file in the DW
    >Connections folder below the connection there instead. [I
    didn't precede the
    >mysql etc line with a $ sign - I wonder if that's the
    issue?]
    I've never used mysql_set_charset().
    Here in my applications it always works like this:
    * the default charset in my InnoDB tables is ISO-8859-1, I
    only use
    UTF-8 in the columns that really need it (text data, but not
    INT or
    DATE columns)
    * SET NAMES 'utf8' at the beginning
    * all files (HTML and PHP) are encoded as UTF-8 without BOM
    * all pages delivered as UTF-8 (my pages are
    script-generated, so I use
    an appropriate header() call to define the content-type and
    encoding)
    That's it. Oh, and I don't use phpMyAdmin ...
    > With this change I could use the Insert forms to add the
    international
    >characters directly into the database and see through
    phpmyadmin that all was
    >hunky dory. But then the problems came with first loads
    of the master list
    >page.
    In the first part of your posting it sounded as if it worked
    almost
    correctly, before you tried to fix the broken phpMyAdmin
    appearance.
    Is that correct?
    > So, I can get international characters into the database
    now (which is a step
    >in the right direction for me), using an insert form on
    the website, but I
    >still can't get the international characters to display
    on the returned page on
    >first loading eg on a list of jobs.
    They did display correctly first, didn't they? So it seems
    that you
    broke your script just in order to fix some PMA problem.
    Revert that.
    Make your script work for normal input/output from/to a
    website first
    and don't worry about PMA for now.
    What do you need PMA for BTW? It may have many other issues
    as well and
    should only be used if really necessary or if you're not
    familiar with
    the command line interface. The only thing that we are using
    it is to
    get a dump from a remote DB, where I don't have shell access
    to call
    mysqldump directly (yes, I could also write a little PHP
    script for
    that, it's already somewhere on my TODO). But here on my
    local system I
    always use the MySQL command prompt if I have to directly
    work on some
    tables or to import the dump from remote.
    Anyway, if you need PMA, your might try their group or forum.
    I'm sure
    there's an FAQ as well. Maybe it's just a configuration
    issue.
    > I've tried other forums - but people seem to be content
    with viewing but not
    >offering assistance. I don't believe that what I'm doing
    here hasn't been done
    >before....all I want is for my pages to display
    international characters and
    >for these to display correctly in phpmyadmin so that when
    I insert, update and
    >delete records using webforms I don't have to resort to
    using &#xxx inserts.
    The bug here is PMA itself. ;-)
    Micha

  • Existing letters disappear in pdf when I add text box

    So I get letters in existing text disappearing as soon as I type anything in a new text box. I have acrobat XI pro running on windows 8.1.
    My pdf document looks fine. All the text is there that's suppose to be there. I need to add text boxes on certain pages so I click on 'add text', I click on any area in my document and the text box appears. As soon as I type anything at all 'random' letters disappear throughout my document. I say random because it's an l here, an e there, etc but it's the same letters from the same words that disappear every time. A month ago I was working on the same document doing the exact same thing and had no trouble adding text without having letters disappearing.
    I've been playing around with it for several hours now and am ready to punch a hole through the wall.
    Any ideas?

    Thanks for 'all' the help (I kid, of course) but I figured it out on my own.
    Tried many, many things and what worked in the end was increasing the dpi of the pdf when it was first created. I had it set to 300dpi which was the same default setting for all the other documents I created and manipulated with no problem but for whatever reason it doesn't work now. I tried it at 600dpi and it's fine. All the letters stay put when I add new text boxes. Probably other dpi settings would work also but I haven't tried.

  • Keyflex value disappears from page when lov event is fired

    Hi All,
    There is a keyflex field and one lov field in my page. When i select the value from kff and after that selecting any value from lov item my kff value disappears from page.
    Plz help asap.............

    Hitesh,
    Mukul, i can put my own Add another row button and do cusom code,but what about other events?
    Yes, see dev guide and old threads. It has been explained in dev guide claerly and have also replied this in old threads.--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Exchange tasks disappear from Outlook when they appear on the Pre

    I am using EAS on my pre, with Outlook 2007 (and Exchange Server 2007).  In Outlook, I use the calendar weekly view which shows the tasks at the bottom on the day they are due.  My pre has synced without any trouble.  However, when the reminder for a task shows up on my pre, the task disappears from my calendar in Outlook.  It is still in my master task list and to-do bar, but doesn't show up "on the day it's due".  Once I've completed the task, it shows back up on the calendar, marked as completed.  I see all future tasks on the calendar as usual until the reminder shows up.  I was trying to see if I could sync via EAS, without syncing tasks, as a possible solution, but haven't found a way to do that.  Has anyone else encountered this?
    Post relates to: Pre p100eww (Sprint)

    Hi Joseph,
    Could the emails be deleted via OWA and not displaying in Outlook?
    Please try to create a new profile and set it to online mode, then test the issue and see if it still appears in OWA.
    If it doesn’t work, I’d recommend you contact with Exchange admin for further troubleshooting.
    Regards,
    Rebecca
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Emails disappear from inbox when forwarded

    I have an iPhone 4S with Verizon service. The phone was set up as new. When I forward an email from the inbox to someone, the original email being forwarded disappears from the inbox. In all other mail applications I have used, the original email stays in the inbox. Does anyone know of a way to fix this? Thanks.

    I'm running ios7 and this is still an issue.  Has nothing to do with organize by thread. 
    If you forward an email on a device, the original message disappears from your inbox - on any device (even my mac).
    I'm using a POP account.  I see several messages on this in the discussions but no resolution or acknowledgement from Apple.

  • Movies disappearing from AppleTV when iTunes not running

    I have synced my iTunes content to my AppleTV several times and have found that I continue to experience jerky playback of movies (AppleTV will pause to buffer data) and that the movies totally disappear from my AppleTV menu when I shut down iTunes. I believe that the movies files have been copied to AppleTV (ie I am not streaming the files). When I restart iTunes, it appears to need to re-sync only the movies with my AppleTV (music, Podcasts, and photos remain available on AppleTV while iTunes is not running). Please advise 1. why the poor flow when movie is playing on AppleTV and 2. why does it seem to need to keep re-syncing movies to the AppleTV?

    Hi Drew-Bob,
    iTunes should not have to re-sync your purchased movies if they transferred over correctly,
    You might want to try restarting the Apple TV, or restoring it. Information on how to perform this is in knowledge base article 305190 (http://docs.info.apple.com/article.html?artnum=305190).
    Cheers,
    John

  • Email disappearing from iPad when I download in iMac

    My wife is having the problem that looks like the ISP's (GCI.net) email server is deleting email from my iPad.
    With her iMac off, when she is traveling, she can download and read email on her iPad. All the email stays there, unless she intentionally deletes something.
    BUT, when she get home from a trip and goes to check email using Apple's Mail on her iMac, which is set to "Remove from server ...," she can WATCH as the email disappears from her iPad -- I have watched this. This has been very frustrating, as I have tried everything I can think of to no avail. My old PowerMac and my older iPod Touch has no problem with GCI email. I have gobs of savedemail on the iPod with the same Mail settings on the PowerMac (I do plan to upgrade to an Intel Mac, this fall, btw).
    Searching the web and here inthe Apple forums, I have so far not found anyone with this situation. It acts like the email content on the iPad is only what is on the GCI.net servers. When my iMac removes those, they disappear from the iPad. But, I seen no settings on the iMac or iPad that will fix this. I have tried everything I can think of.
    Her Gmail account works fine on her iPad.
    The iMac is set up with POP account. (As is my PMG5). The iPad was forced to set up a POP account (as a possible solution) for GCI email because the default IMAP is where we first discovered the issue of the server appearing to delete email from the iPad.
    Thanks in advance for your help.

    Some of the older 30-pin-to-USB cables have catches on the iPad end. The connector block on them extends further from the iPad than the ones without the catch; they are almost square. You have to squeeze the sides of the connector to disengage the catches.
    I'm not sure what being in iTunes has to do with it, though.

  • My library keeps disappearing from view when I open itunes

    I recently bought a laptop and have transferred all my music from my old PC computer to my laptop. I have noticed that when I open itunes from time to time my library has disappeared from view. It's annoying as I have to keep bringing my library back in from my music folder, importing my playlists and then the podcasts have to be resubscribed. It also means I keep losing my play counts and history. It has happened about 4-5 times now. Then when I restore the library and I link my classic ipod to sync all the content has to be reloaded, which all takes time. Is there something silly that I have not done. I have been searching to see where I am going wrong and now about to lose the plot alltogether! My laptop is using Windows Vista, my PC was Windows XP. Any help much appreciated. I'm sure it's something simple!

    Hello Goldie24,
    And welcome to Apple Discussions!
    I don't have any direct answers for you when it comes to this issue, but I can point you somewhere where others might. Check out this older thread. It may end up leading you to another older thread, but it should lead you to the solution needed for this issue.
    http://discussions.apple.com/message.jspa?messageID=9345281
    Hope this helps.
    B-rock

  • IBook disappears from network when using Airport

    Hi there. Until recently my wife and her iBook have happily shared files back and forth with my Mini, and she has been able to use my shared printer. Now, when she's connected to the internet through our Airport Graphite, our computers no longer show up on each other's network, and she can't find my shared printer.
    I'm not sure if I have a software or hardware problem, but I can't figure it out on my own.
    We have two desktops (a Mini and an eMac) connected to a cable modem through an ethernet hub. The Airport Graphite is also connected to the hub. The Airport is configured to distribute IP addresses, and ethernet client computers also share a single IP address (using NAT).
    If we unplug the ethernet cable from our eMac and plug it into my wife's iBook, the iBook and Mini can once again "see" each other, and my wife can access my shared printer. When we unplug the ethernet from the iBook and go back to using the Airport, the iBook can still access the Internet, but it disappears from the local network.
    I'm hoping there's a simple explanation that I'm missing. I'd be grateful for some help!
    Mac Mini 1.2 GHz   Mac OS X (10.4.8)  

    Thanks so much for responding, Tesserax.
    My hub is a "Linksys 5-Port Workgroup Hub," model EW5HUB.
    The cable modem is plugged into the port called "Uplink." The Mini is plugged into port 1, the eMac into port 2, and the Airport into port 3.
    The network has functioned properly in the past (the iBook used the printer plugged into the Mini, and we shared files back and forth). Recently, I had to reset the Airport, but I thought I had reconfigured it correctly. In short, Airport configuration would be my main suspect here.
    I'm afraid I don't know what (if anything) is supplying NAT service. I assumed it was something the Airport does -- allowing it to sort out the flow of data to the various computers. The question is beyond my expertise level because I don't really understand what NAT service is. Is the problem in my Airport's Network configuration?
    My ISP assigns IP addresses dynamically, so my Airport doesn't have a static IP address. However, my ISP allows for only two IP addresses, so I need my ethernet computers to also share the Airport's address.
    I hope that, somewhere during my ramblings, a light has gone off in your more enlightened mind. Thanks again for your help!

  • My notes disappeared from mail when i upgraded to mavericks

    my notes disappered from mail when i upgraded to mavericks

    Hello question999,
    Notes are now located in a separate Notes application.
    iCloud: Notes overview
    http://support.apple.com/kb/PH12081
    Cheers,
    Allen

  • Why has a tv show I downloaded disappeared from Videos when I downloaded another tv show?

    I downloaded the 3rd season of Absolutely Fabulous on my iPad 2, having already previously downloaded seasons 1 &amp; 2. However, the 3rd season now appears 3 times in Videos, as does season 2, and season 1 has disappeared along with another tv show that was previously in Videos.
    I removed season 3, and all my shows then returned to Videos as they were before. I re-installed Season 3 and the same thing has happened again!
    Anyone else had this problem?

    The circle with square is the download status indicator. It should disappear after the show has completley downloaded onto the iPad.
    Try closing the videos app and reset the iPad, then go back to the Videos App and see if the shows are working. If the cloud icon still shows, try tapping them again in order to download the shows.
    In order to close the videos app, drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app and then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Clips disappear from Events when moving external drive to my new Laptop

    Here is a weird one: I have a large external drive (software RAID) that I have all my footage on, and I am using iMovie to organize it; using a 2006 iMac 24" running Leopard 10.5.7, iMovie '09 8.0.3 (802) (the latest) - all is going reasonably well, although its getting a little slow.
    But, when I move this drive onto my new Mid '09 Macbook Pro, also running 10.5.7, iMovie 8.0.3, the recently re-arranged events show up with no clips in them. Other events, that have not been recently changed, show up okay. Projects seem unaffected.
    Then, if I take the drive back to the iMac, it's all normal again. Sometimes iMovie won't start at all on the MacBook.

    Bonsai wrote:
    I also notice that I get the 'Choosing Full on this computer may result in degraded video playback' warning, despite being 2.8GHz vs. the 2.16 of the iMac, 512Mb video card (enabled) etc. etc.
    Yes-that was a standard statement in all imovie users. However, in the latest version of imovie there isn't full vs large. There is original vs large. You should check you imovie updates.
    I don't know if thats the culprit or not, the iMac does not have that warning. Does anyone else have a MacBook Pro with that warning?
    no that is not the culprit

  • Songs disappearing from playlist when I plug iPhone in to my PC/iTunes

    I'm not sure if iPhone or iTunes is the problem as they both recently died about 3 weeks ago. My phone died so I took it to Apple and they swapped me out for a new one. When I got home to install the latest back up, I realized I had no music in my iTunes account. Strange! So I have reinstalled all of my music, but now whenever I plug my phone in to my PC and iTunes is open, it erases several songs from my playlist on my phone. The song is still on my phone, just not in the playlist. It's a complete pain in the You Know What to set up a play list in a specific order, so I'm starting to get a little irritated. I am not sure why this is happening. And why only some songs? Is there a glitch in the new iTunes version?  Could something be wrong with my new phone? Or the new update I just did on my phone yesterday? Please help....

    Perhaps this will help:
    http://support.apple.com/kb/TS1538
    Regards.

Maybe you are looking for