Sidebar not flush in IE

Hello,
Thanks so much for your help in advance. I am building a Web
site and both my banner and my sidebar are library items. On the
Mac, in Safari and Firefox, the sidebar is flush with the banner,
like I want it. But in IE on a PC, there is a space between the
banner and the sidebar. Can someone tell me how to fix this? Any
ideas you can give me will be much appreciated.
the page:
http://medillcherubs.org/2008/index.html

Add this to the end of your nav p CSS selector at Line 209 of your HTML file, after 'background-repeat...':
margin-bottom: -2px;
Your nav p will then look like this:
nav p {
          font-size: 90%;
          font-weight: bold;
          color: #FFC;
          background-color: #090;
          text-align: right;
          padding-top: 5px;
          padding-right: 20px;
          padding-bottom: 5px;
          border-bottom-width: 2px;
          border-bottom-style: solid;
          border-bottom-color: #060;
          background-image: url(images/background.png);
          background-repeat: repeat-x;
          margin-bottom: -2px;

Similar Messages

  • Sidebar not flush with top border

    I am brand new to web design and DW.  I can't figure out how to bring my left sidebar flush with the header of the page.  I am following along in the DW-CS6 Class in a book.  Here is the code.
    <!doctype html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
              background-color: #FFF;
              margin: 0;
              padding: 0;
              color: #000;
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 100%;
              line-height: 1.4;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
              padding: 0;
              margin: 0;
    h1, h2, h3, h4, h5, h6, p {
              margin-top: 0;           /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
              padding-right: 15px;
              padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
    .sidebar1 aside {
              font-size: 90%;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
              border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
              color: #42413C;
              text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
              color: #6E6C64;
              text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
              text-decoration: none;
    /* ~~ This fixed width container surrounds all other blocks ~~ */
    .container {
              width: 950px;
              background-color: #FFFFFF;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
              border: 2px solid #060;
    #logo {
              position: absolute;
              width: 170px;
              height: 158px;
              z-index: 1;
              margin-top: 10px;
              margin-left: 30px;
    /* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
    header {
              background-color: #090;
              background-image: url(images/banner.jpg);
              background-repeat: no-repeat;
              height: 130px;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.
    .sidebar1 {
              float: left;
              width: 180px;
              background-color: #EADCAE;
              padding-bottom: 10px;
    .content {
              padding: 10px 0;
              width: 770px;
              float: right;
    .content h1 {
              font-size: 200%;
              margin-top: 10px;
              margin-bottom: 5px;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
              padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    nav p {
              font-size: 90%;
              font-weight: bold;
              color: #FFC;
              background-color: #090;
              text-align: right;
              padding-top: 5px;
              padding-right: 20px;
              padding-bottom: 5px;
              border-bottom-width: 2px;
              border-bottom-style: solid;
              border-bottom-color: #060;
              background-image: url(images/background.png);
              background-repeat: repeat-x;
    nav p a:link, nav p a:visited {
              text-decoration: none;
              color: #FFC;
              padding: 5px;
    nav p a:hover, nav p a:active {
              color: #FFF;
              background-color: #060;
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    ul.nav {
              list-style: none; /* this removes the list marker */
              border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
              margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    ul.nav li {
              border-top-width: 1px;
              border-right-width: 1px;
              border-bottom-width: 1px;
              border-left-width: 1px;
              border-top-style: solid;
              border-right-style: solid;
              border-bottom-style: solid;
              border-left-style: solid;
              border-top-color: #0C0;
              border-right-color: #060;
              border-bottom-color: #060;
              border-left-color: #0C0;
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
              padding: 5px 5px 5px 15px;
              display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
              width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
              text-decoration: none;
              background-color: #090;
              color: #FFC;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
              background-color: #060;
              color: #FFF;
    /* ~~ The footer ~~ */
    footer {
              padding: 10px 0;
              background-color: #090;
              position: relative;/* this gives IE6 hasLayout to properly clear */
              clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
              font-size: 90%;
              color: #FFC;
              background-image: url(images/background.png);
              background-repeat: repeat-x;
    /*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
    header, section, footer, aside, article, figure {
              display: block;
    .green {
              color: #090;
    -->
    </style><!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]--></head>
    <body>
    <div class="container">
      <div class="green" id="logo"><img src="images/butterfly-ovr.png" width="170" height="158" alt="GreenStart Logo"></div>
      <header></header>
      <nav>
        <p><a href="#">Home</a> | <a href="#">About Us</a> | <a href="#">Contact Us</a></p>
      </nav>
      <div class="sidebar1">
        <ul class="nav">
          <li><a href="#">Green News</a></li>
          <li><a href="#">Green Products</a></li>
          <li><a href="#">Green Events</a></li>
          <li><a href="#">Green Travel</a></li>
          <li><a href="#">Green Tips</a></li>
        </ul>
        <aside>
          <img name="Sidebar" src="" width="180" height="150" alt="">
          <p>Insert caption here</p>
        </aside>
      <!-- end .sidebar1 --></div>
      <article class="content">
        <h1>Insert main heading here</h1>
        <section>
         <h2>Insert subheading here</h2>
          <p>Insert content here</p>
        </section>
        <!-- end .content --></article>
      <footer>
        <p>Copyright 2012 Meridien GreenStart.  All rights reserved.</p>
        <address>
          Address Content
        </address>
      </footer>
      <!-- end .container --></div>
    </body>
    </html>
    Any help would be greatly appreciated.

    Add this to the end of your nav p CSS selector at Line 209 of your HTML file, after 'background-repeat...':
    margin-bottom: -2px;
    Your nav p will then look like this:
    nav p {
              font-size: 90%;
              font-weight: bold;
              color: #FFC;
              background-color: #090;
              text-align: right;
              padding-top: 5px;
              padding-right: 20px;
              padding-bottom: 5px;
              border-bottom-width: 2px;
              border-bottom-style: solid;
              border-bottom-color: #060;
              background-image: url(images/background.png);
              background-repeat: repeat-x;
              margin-bottom: -2px;

  • After call commit sql , data can not flush to disk

    I use berkey db which support sql . It's version is db-5.1.19.
    1, Open a database.
    2. Create a table.
    3. exec "begin;" sql
    4. exec sql which is insert record into table
    5. exec "commit;" sql
    6. copy database file (SourceDB_912_1.db and SourceDB_912_1.db-journal) to Local Disk of D, then use a tool of dbsql to open the database.
    7. use select sql to check data, there is no record in table.
    1
    sqlite3 * m_pDB;
    int nRet = sqlite3_open_v2(strDBName.c_str(), & m_pDB,SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE,NULL);
    2
    string strSQL="CREATE TABLE [TBLClientAccount] ( [ClientId] CHAR (36), [AccountId] CHAR (36) );";
    char * errors;
    nRet = sqlite3_exec(m_pDB, strSQL.c_str(), NULL, NULL, &errors);
    3
    nRet = sqlite3_exec(m_pDB, "begin;", NULL, NULL, &errors);
    4
    nRet = sqlite3_exec(m_pDB, "INSERT INTO TBLClientAccount (ClientId,AccountId) VALUES('dd','ddd'); ", NULL, NULL, &errors);
    5
    nRet = sqlite3_exec(m_pDB, "commit;", NULL, NULL, &errors);
    Edited by: 887973 on Sep 27, 2011 11:15 PM

    Hi,
    Here is a simple test case program I used based on your description:
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include "sqlite3.h"
    int error_handler(sqlite3*);
    int main()
         sqlite3 *m_pDB;
         const char *strDBName = "C:/SRs/OTN Core 2290838 - after call commit sql , data can not flush to disk/SourceDB_912_1.db";
         char * errors;
         sqlite3_open_v2(strDBName, &m_pDB, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
         error_handler(m_pDB);
         sqlite3_exec(m_pDB, "CREATE TABLE [TBLClientAccount] ( [ClientId] CHAR (36), [AccountId] CHAR (36) );", NULL, NULL, &errors);
         error_handler(m_pDB);
         sqlite3_exec(m_pDB, "begin;", NULL, NULL, &errors);
         error_handler(m_pDB);
         sqlite3_exec(m_pDB, "INSERT INTO TBLClientAccount (ClientId,AccountId) VALUES('dd','ddd'); ", NULL, NULL, &errors);
         error_handler(m_pDB);
         sqlite3_exec(m_pDB, "commit;", NULL, NULL, &errors);
         error_handler(m_pDB);
         //sqlite3_close(m_pDB);
         //error_handler(m_pDB);
    int error_handler(sqlite3 *db)
         int err_code = sqlite3_errcode(db);
         switch(err_code) {
         case SQLITE_OK:
         case SQLITE_DONE:
         case SQLITE_ROW:
              break;
         default:
              fprintf(stderr, "ERROR: %s. ERRCODE: %d.\n", sqlite3_errmsg(db), err_code);
              exit(err_code);
         return err_code;
    }Than I copied the SourceDB_912_1.db database and the SourceDB_912_1.db-journal directory containing the environment files (region files, log files) to D:\, opened the database using the "dbsql" command line tool, and queried the table; the data is there:
    D:\bdbsql-dir>ls -al
    -rw-rw-rw-   1 acostach 0 32768 2011-10-12 12:51 SourceDB_912_1.db
    drw-rw-rw-   2 acostach 0     0 2011-10-12 12:51 SourceDB_912_1.db-journal
    D:\bdbsql-dir>C:\BerkeleyDB\db-5.1.19\build_windows\Win32\Debug\dbsql SourceDB_912_1.db
    Berkeley DB 11g Release 2, library version 11.2.5.1.19: (August 27, 2010)
    Enter ".help" for instructions
    Enter SQL statements terminated with a ";"
    dbsql> .tables
    TBLClientAccount
    dbsql> .schema TBLClientAccount
    CREATE TABLE [TBLClientAccount] ( [ClientId] CHAR (36), [AccountId] CHAR (36) );
    dbsql> select * from TBLClientAccount;
    dd|dddI do not see where the issue is. The data can be successfully retrieved, it is present in the database.
    Could you try putting in the sqlite3_close() call and see if you still get the error?
    Did you remove the __db.* files from the SourceDB_912_1.db-journal directory?
    Did you use PRAGMA synchronous, and if so, what is the value you set?
    If this is still an issue for you, please describe in more detail the exact steps needed to get this reproduced and provide a simple stand-alone test case program that reproduces it.
    Regards,
    Andrei

  • Moving datafiles to a new location: change not flushed

    Hi all,
    I am using Oracle 10g release 10.2.0.1.0 patched 10.2.0.3.0
    I need to move all datafiles of the DB from a current location to a new one. Here are the steps I follow (I use SPFILE):
    1-Shutdown the DB
    2-Move all .DBF .LOG .CTL files to the new location
    3-startup mount
    4-alter database rename file 'old location' to 'new location' ; ... for all .DBF and .LOG files
    5-alter system set control_file=<list of CTL files in new location>
    6-alter system set core_dump_dest=<new empty location for cdump>
    7-alter system set user_dump_dest=<new empty location for udump>
    8-alter system set background_dump_dest=<new empty location for bdump>
    9-alter database open
    From this point, if I use select * from v$logfile or select name from v$datafile or show parameter, I see that the DB is using all files in the new location. That's correct.
    My problem is: if now, I issue a shutdown followed by a startup, the DB will then show the old location for files as if my updates (steps 1 to 9) were not flushed/commited.
    Is there a kind of commit to have my changes taken into account ? How may I resolve my problem ?
    Thanks for any help.

    This does not work:
    1-Shutdown the DB
    2-startup mount
    3-alter database rename file 'old location' to 'new location' ; ... for all .DBF and .LOG files
    4-alter system set control_file=<list of CTL files in new location>
    5-alter system set core_dump_dest=<new empty location for cdump>
    6-alter system set user_dump_dest=<new empty location for udump>
    7-alter system set background_dump_dest=<new empty location for bdump>
    (So changes are now in the old location)
    8-shutdown
    8-copy all .DBF .LOG .CTL files to the new location
    9-startup
    ... because when the alter database statement is issued, oracle does not find the file in 'new location'. So the correct sequence with the spfile is:
    1-Shutdown the DB
    2-copy all .DBF .LOG to the new location. Do not copy the .CTL files at this step.
    3-startup mount
    3-alter database rename file 'old location' to 'new location' ; ... for all .DBF and .LOG files
    (Oracle finds them in the new location)
    4-alter system set control_file=<list of CTL files in new location> scope=spfile
    5-alter system set core_dump_dest=<new empty location for cdump> scope=spfile
    6-alter system set user_dump_dest=<new empty location for udump> scope=spfile
    7-alter system set background_dump_dest=<new empty location for bdump> scope=spfile
    (CTL are still in old location but contain information about the new location)
    8-shutdown
    9-copy all .CTL files to the new location
    10-startup
    Many thanks to you all for your help.

  • System.out will not flush before input

    Hello everyone,
    I am using Netbeans 5.5, JDK6, and J2EE. I am new to the environment so I wrote a test application that would prompt a user to enter a string and then echo it. I have:
    String str = "";
    BufferedReader br = new BufferedReader(new nputStreamReader(System.in));
    System.out.print("Enter a string: ");
    System.out.flush();
    try
    str = br.readLine();
    catch(IOException ex)
    System.out.print(ex.toString());
    System.out.print(str);
    What is really bizarre is that System.out will NOT flush no matter what. My application will always ask for input before it even prompts the user for the string. This is what the output looks like when running:
    init:
    deps-jar:
    compile:
    run:
    hello
    Enter an string: hello
    BUILD SUCCESSFUL (total time: 5 seconds)
    Notice how I had to enter the string first? The only way that I have seen that it flushes is if I used println() instead of print. But what if I don't want the prompt to have an end line in it. This just seems like weird behavior. Also, I have tried using a Scanner for input and the results are the same. Not really sure what to do. Any help would be most appreciated. Thanks.

    are you running this inside netbeans as well? the "console" view in netbeans (and eclipse, and probably other IDEs) is not a real console, it's a GUI component that the IDE writes to. it's behaviour isn't guaranteed to act like a real console. I've seen this sort of thing on eclipse before, but never used netbeans. but it still stands that an IDE's console view isn't an actual console/terminal window. that may well be the root of the problem

  • Is anyone else's Power Button not flush?

    I just noticed that my power button is not flush with my speaker grill. It dips down to the center (left-side). Does anyone else have this problem? I compared it to my buddy's computer, and his is perfectly flush. Let me know, thanks.

    Just wanted to give an update:
    I went to the Apple store after my classes in the morning and talked a Genius. He said that the buttons are attached with a special adhesive and that is why they all aren't perfectly flush. He got the manager to do an exchange for me since I just got a week ago and was still under the return policy. He said something about had it been after two weeks that it would have been repaired (not replaced). He also said that he has only seen a couple others that were like mine (on side not attached) but more that were just not flush. He also said to make sure to not apply lots of force to the button. So it sounded like if your laptop doesn't look like its abused that they might fix it if the button isn't completely attached (but not if it just isn't flush), but it might depend on who you talk to.

  • X3-02 top edge of screen not flush fitted

    Hi,
    I recently bought an X3 touch and type and noticed that the top of the screen is not flush fitted with the frame.  The glass top edge is protuding up a bit hence the sharp edge of the glass is cutting against my ear, sort of like getting a paper cut every time you put the phone to your ear.
    I tried to get this fixed under warranty with the local Nokia dealer in Muscat, Oman and they refused service as the phone was purchased in Dubai UAE!?!?  They'd only fix in the event I paid for the repairs, and then they wouldn't guarantee they could fix it.
    Btw, haven't dropped the phone, the touch screen works beautifully and phone functions are great - if it wasn't for this annoying screen fitment problem, it would be a perfect little phone.
    Totally miffed at Nokia for not supporting in a case where it is a clear example of a bad assembly, or manufacturing defect? 
    Does anyone know how I can get this resolved with Nokia?  Do they have a customer escalation point or procedures?  Do they monitor these boards?
    Thanks in advance for any advice is dealing with Nokia on this.
    Regards,
    Asad

    The retailer should have explained to you that it did not have an international warranty or one that was valid in Oman. The only place you can get warranty service at is Dubai, assuming that it's a model for that country and not an import.
    If you are unhappy about that you can complain to Nokia via the "contact us" link near the top or bottom of the page. Your complaint can't be resolved through this forum as it's primarily a place where users help each other and not a contact point for nokia. 
    Now for workarounds:
    1 - Don't push it so hard against your ear.
    2 - Buy a silicone case for the phone, you can find these on popular websites such as amazon or ebay. Some phone shops may sell them too.

  • Problem with DHCP not flushing unused leases

    We have a small network of approximately 40 devices that get IP addresses via DHCP. We have had at least one encounter where we used up all available 254 addresses in the DHCP pool. Come to find out, unused leases are not flushed.
    Is there a utility or CRON job that should be running and perhaps has stopped, that will periodically flush unused leases? We had the lease time set for a couple days, and today changed it to 2 hrs, but it still isn't flushing.
    Thanks

    Hi RiBridges,
    it might be to soon to check wether "flushing" occurs or not. As the man page of bootp states regarding DHCP:
    "The server removes an expired lease entry only when it runs out of addresses, and needs to reclaim an address in order to fulfill a new request."
    -Petra

  • Iphone 3gs screen not flush

    My new Iphone 3gs has a problem where the top right hand side glass is not flush with metal bezel leaving a quite rough and sharp metal corner.Is the normal? im not thinking so as my 3g was flush all the way around.Im have also noticed the screen is slightly dipped on one side and not straight.I cant go back to the phone shop where i signed up its not close to where i live or work.Will i be able to arrange to get this fixed or replaced at the apple store in the city where i work ?
    Im actually not happy to let my neice play with the phone games as it is rather sharp.

    Maciej Karcz wrote:
    The right side on my 3GS is also a little higher than the left. I have read about a few other instances of this on the 3GS. It's not a problem for me since I keep my phone in a Griffin Clarifi case. Since the uneven lip seems to occur occasionally with the 3GS, replacing for a new one is no guarantee that it will be any better. I recommend just getting a case for the phone, it will keep the phone safe and your niece safe too.
    Mine is in a case, too. I did remove it and found no noticeable difference, right to left. I agree that a case is the best way to go .. with or without any cosmetic flaws in the iPhone.
    Phil

  • Glass Not Flush With Bezel On All Sides

    Like the battery in My MacBook, the glass panel on the front of my iPhone is not Flush with both sides of the bezel. On the right side it meets perfectly smooth with the edge, on the left side it dips slightly creating a little lip with the bezel. It's not huge, but it's there.
    Just wondering if this is typical of iPhone construction or if I need to take it into an Apple Store for a swap. Like I said, I see it in almost every MacBook I've seen, but then the battery is designed to be removable and one would expect it to be an imperfect fit. The iPhone is a sealed enclosure with no user accessible parts. I realize no manufacturing process is perfect, but is this something I should even try to get Apple will likely to replace or is it like the stuck pixel LCD problem of the past?

    It's defective. Take it back.
    I have both a macbook and a iPhone, both perfect.

  • Dreamweaver Teamplate with Library Item for Navigation/Sidebar not updating editable classes

    I have a Dreamweaver Template that contains two Library items. One Library item is my navigation bar, the other is a sidebar that shows different content depending on what page you are on. I'm assigning an editable class "active" to the navigation bar to show you are on a particular page, and also assigning the editable class "active" to the sidebar to reveal a portion of the sidebar with links pertaining to that specific page. The default value for the class is "hidden". So what is happening is when I open a page I have created and "edit" the Library Items in it to edit these classes, it resets resets all the other pages on the site to the default class values. How am I able to use editable classes and Library Items to achieve this kind of functionality? The idea is to only have ONE navigaton bar to update on the site and to only have ONE sidebar item to update. Here is an example of the sidebar and navigation in action so you can see what I'm going for. Notice the green button in the navigation bar (that is a list item with the class "active" which is an editable class in the Library Item, also notice the tan links in the sidebar, that is an unordered list that has an editable class of "active" in the Library Items --- these editable classes reset to their defaults when updating the Library Item on the website).
    http://www.brumleve.org/joe/temp/CAP/mission.html

    In my understanding, whenever you edit the contents of a library item, it will update all other occurances of this library item on the rest of the site. That's "working as designed" as far as I know, unless you break the link by telling it to not update - which kinda defeats the purpose I think.
    But theres another way to do this using template properties, i#ve been using this approach myself a couple of times:
    Write your navigation bar in the template (.dwt) file itself, then select the class= of your first menu item and choose .. (names might be off, I am using a non-English copy of DW): "modify > template > make attribute editable" from the main menu. Do so for all your menu items and name these new template properties something like "item_x_class"
    You'll end up with something like this in your template source:
    <div class="@@(item_1_class)@@">
    and a matching
    <!-- TemplateParam name="item_1_class" type="text" value="active" --> in the header
    Now, on each page, you can set the class within the template properties dialog ("modify > template properties"). If your main menu changes, it won't overwrite your template properties, but still update all pages when you do make a change to the menu.
    If you're using multiple templates for your site, consider nesting templates, so the master template already includes your navbar and all subsequent templates will "inherit" changes to the navbar code (sans the editable class property).
    Hope this helps.. or at least gives you an idea for further experiments..
    Stephan

  • Finder sidebar not updating with applications open/save dialog boxes

    Hi all,
    I've searched the threads and can't seem to find an answer to this recurring issue that I'm having.
    I save folders to current projects in the Finder sidebar. However, I find that when I try to find those sidebar folders from within the open/save dialog applications that it is often times and old version of the sidebar. In the image linked below note the Finder sidebar on the left and the InDesign CS sidebar on the right. The list of folders is different. The version via InDesign seems to be an older cached version.
    Screen capture: http://www.fabianross.com/forum-images/screen-capture.png
    Does anyone know how to update this cached version to see the new list of folders?
    Thanks,
    Jerry

    Try deleting this file: com.apple.sidebarlists.plist
    /Users/YourName/Library/Preferences. Drag that file from the Preferences folder to the Trash, empty the Trash and reboot. See if that helps...
    Seems to me that Adobe is very picky about where the files are kept on the hard drive. You might not want them in the Sidebar. Whenever you do an Adobe software update, the installer needs the path to where those files go. If it's missing in action, it can wreak havoc.
    Make sure when you do Adobe updates, if there is a link included or a Read Me file, check that out first before installing anything.
    Run Disk Utility and Repair Disk Permissions BEFORE and AFTER any software updates:
    Launch Disk Utility. Select MacintoshHD in the panel on the left, select FirstAid, then click: Repair Disk Permissions. Quit DU when it's finished and reboot.
    Carolyn

  • Setting primary key field value in jdoPrestore() not flushed to database ?BUG?

    Hello,
    When I set value of primary key field of a new instance in jdoPrestore() new
    value does not get flushed to database - old (default) value get stored
    instead. All other fields assigned in jdoPrestore() get successfully
    flushed except primary key one.
    Alex

    Abe,
    You fixed only part of the problem. Right now if I assign value to a PK
    field in jdoPreStore() it does get flushed but there is another issue - all
    other instances which referenced the one I assigned PK to will not get this
    PK value. Example A references B, in B.jdoPreStore() I generate id for B -
    b.id = 100. When A gets flushed it would not get 100 in its b_id field.
    Specs says:
    This method is called ***before the values are stored from the instance to
    the StateManager***.
    Data store fields that might have been affected by modified non-persistent
    fields should
    be updated in this method. This method is modified by the enhancer so that
    changes to
    persistent fields will be reflected in the data store.
    The context in which this call is made allows access to the
    PersistenceManager and
    other persistent JDO instances.
    I read it as callbacks should be invoked on ALL instances before they get
    stored to StateManager. Does Kodo invoke callbacks for all istances first
    and then store them to instance manager? Based on the problem I am having it
    does not look like it
    Alex
    "Abe White" <[email protected]> wrote in message
    news:[email protected]..
    I just confirmed this as a bug and fixed it. We should be able to post
    the new jars for you soon. Hang in there.

  • Sidebar not extending, footer not at foot

    Okay. I have a mess of new pages to build for my site (about 80 of them). I have existing templates to start them from. The templates are fine. The old pages are fine. In the new pages, however, the sidebar won't extend to the bottom of the content box, and the footer doesn't go to the foot. They just sit there in the middle of the page, and don't take any account of the new information. it looks fine in Design view, but live view or checking in a browser has a truncated sidebar and a footer spread across the middle of the page. I don't see anything in the code that would cause that, but I'm not an expert at reading code.
    This is Dreamweaver CS6 on Snow Leopard. Just as it was when the site was built, I haven't changed anything, and it didn't do this before. What is going on here, and how do I make it stop. NONE of the new pages are working properly. Not a single one.
    I last did some expanding of an existing page on May 8, and those changes went in without a problem. Also some image swaping out and replacement on June 2nd. No problems with any of that. Before that I built a new page on April 17, and it didn't do this then, either.
    Another issue: if necessary I'll start a new discussion on it as well, but maybe it's something simple enough that someone can give me a fix for it.
    One of the pages contains a whole series of images, stacked on top of each other, extending down the page. I can't seem to be able to get the images to join up against one another. The program puts a gap of about 5 pixels between each one. It doesn't matter whether I just insert the images into the section and let them float, or if I put them in a table with no cel padding or border or anything else. They won't join up. How do I get rid of the extra spacing?
    Thanks for any help on this.
    J.

    It isn't posted yet. None of the new pages are getting posted until I've stomped the bugs. The existing pages are on my site.
    The area which seems to have gone screwy is the Graphics collection.
    http://www.redhen-publications.com/graphics.html
    But the pages that are online are all okay.
    I have adapted a new page from the most similar template from a different part of the site, and saved it as a new template. It doesn't have the non-stretchable sidebar problem, but there are some other weirdnesses going on. And the pages saved from any of my templates, both the new ones and the old ones, no longer get saved as .html. The child pages keep trying to save as .dwt, which is just wrong. And I know damned well that this didn't happen previously. What is more, the child pages, when I have manually changed them to .html in the Save As dialogue can no longer be directly saved. They keep trying to go back to being templates. I have to Save As every time, to keep them .html. There no longer appears to be any way to create a page that *isn't* a template.
    Regarding the new template: The sidebar stretches, but there are gaps between some of the line items that ought not to be there. But only some (in fact, only one. It has about a 5 pixel gap above and below its sidebar button while the rest all butt up nicely together, the way they are supposed to). the button is an image rollover, with no way of getting at anything like the properties panels which would let me try to fudge with negative margins. There appears to be no difference in the code between this new page and the old pages which have the sidebar in the format it ought to have.
    Old page with correct sidebar buttons:
    <div class="sidebar1"><img src="../Images/basics/counter.png" width="154" height="39" alt="counter"><a href="../publications.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('publications','','../Images/basics/butt_pub-2.png',1)"><img src="../Images/basics/butt_pub-1.png" alt="Go to Publications Collection" width="154" height="52" id="publications"></a><a href="../graphics.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('graphics','','../Images/basics/butt_graf-2.png',1)"><img src="../Images/basics/butt_graf-3.png" alt="Go to Graphics Collection" width="154" height="52" id="graphics"></a>
    New page Sidebar button code:
    <div class="sidebar1"><img src="../Images/basics/counter.png" width="154" height="39" alt="counter"><a href="../publications.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('publications','','../Images/basics/butt_pub-2.png',1)"><img src="../Images/basics/butt_pub-1.png" alt="Go to Publications Collection" width="154" height="52" id="publications"></a><a href="../graphics.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('graphics','','../Images/basics/butt_graf-2.png',1)"><img src="../Images/basics/butt_graf-3.png" alt="Go to Graphics Collection" width="154" height="52" id="graphics"></a>
    The only difference I see is that on the faulty page there is a spot where the code drops to another line rather than running straight. And can't be fixed by just deleting a return. Any attempt to delete the gap deletes characters in the code ahead of it.
    I could live with it if it was absolutely necessary. But I dislike it a lot, and can't see why something that was built nearly a year ago, and has not been altered since, should suddenly be impossible to reproduce.

  • MOBILEME GALLERY in sidebar not being converted to iPhoto11 from iPhoto09

    o Have factory fresh Mac Pro with iPhoto 11 (9.1.1)
    o Copied over an iPhoto Library, created in iPhoto 09 (8.1.2) on a G5 running OSX 10.5.8, to the Mac Pro's hard disk. iPhoto Library that was copied includes photos, ALBUMS and MOBILEME GALLERY albums (MMGA), all listed in iPhoto 09's sidebar on the left. MMGA were the source to create the current gallery of albums with photos on my MobileMe account.
    o On Mac Pro launched, via double click, the iPhoto09 Library that was copied from over from the G5
    o iPhoto 11 converted incoming info and all seems ok except sidebar at left does not list my MOBILEME GALLERY albums, rather it only lists
    - LIBRARY RECENT ALBUMS PROJECTS but no MOBILEME GALLERY
    How do I get these albums listed in my left sidebar under MOBILEME GALLERY?
    Don't the MOBILEME GALLERY albums convert from iPhoto09 to iPhoto11?
    Moderators - I also posted this in the iPhoto09 section. Probably should be deleted there as more applicable to iPhoto11. Thanks - STL

    Turns out the albums associated with MobileMe albums will be listed under WEB in the sidebar. I generated a small album for MobileMe in iPhoto11 and the WEB identifier appeared with my mobileme identifier underneath. Albums in my MobileMe gallery were then listed in the iPhoto window. I don't have clue why this happened.
    I would appreciate an explanation by someone that understands why I encountered this issue.
    Anyway, it seems to be working now although 11's sidebar identifiers are different than 09's.

Maybe you are looking for

  • Success with sorting Compressor Leopard S L O W encode problem - here's how

    Hi all, After struggling for a LONG time and picking up some tips here on the way, I finally got Compressor encoding in a reasonable time on Leopard - before it was taking DAYS to compress to H.264 - it would just crawl along at a brain numbingly slo

  • Problem about replicating object from R/3 to CRM!

    Dear All:       when i replicate the customizing object from  r/3 oltp to the crm system ,in the crm system ,uesing t-code:smq1,i can see the status was 'SYSFALL' in the queue information ,the detail is 'The current application triggered a terminatio

  • Need help placing images on separate layers

    I'm a novice to Javascript but I've been trying to learn. I have a project where i need to place muliple images from a folder onto separate layers (same page) in a template. I tried to modify "ImageCatalogue" script within InDesign to disastrous resu

  • Can I see what number an iMessage is coming to?

    I have iMessages for both my phone number and my daughter's phone number coming to my phone.  Is there a way to tell when an iMessage comes in which number it was addressed to? Thanks!

  • Where's the JDS Specification?

    Where is the specification for JDS ? I want to integrate a Java Card for secure JDS login using JAAS but there's nothing like a spec for using the JDS. It's unlike Sun to not release a specification on this so enginneers can integrate other products