Side Bar Navigation problem

Hi All
I am using Side Bar Navigation in My Pages.The problem is Link names are Big.
So whe page renders along with Side Bar Navigation ,Link get Wrapped up and appears in two line which looks weard. I dont want this to happen.One Link should come in one line only.
Any Idea to how to control this??
Regards
Naveen

No way to control this, this is a standard widget and users have no control over this.
Thanks
Tapash

Similar Messages

  • Browser preview menu bar navigation problems

    Hey everyone I have a very strange problem that I honestly have no idea at all how to handle.
    Below is a template I've put together. It's for a pump repair business site (to provide clarity on any content).
    Everything was going smoothly, until I previewed it in the browser (using Firefox and Chrome). I can jump from page to page about twice, but, after that, especially when I try to return to the home page, I recieve an error like this:
    ' No webpage was found for the web address:file:///C:/Users/John/Desktop/Design/Merit%20Pump%20Website/MeritPump_Template.dwt '
    And I am also not able to access my submenus in the browser preview, and inevitably NOTHING will work after the first few jumps between pages.
    My code is below. Thank you so much for any help- this is my last major roadblock before I am able to publish.
    <!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" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body {
        font: 100% Verdana, Arial, Helvetica, sans-serif;
        margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
        padding: 0;
        text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
        color: #000000;
        background-color: #CCC;
    p {
        font-size: 13px;
    .oneColFixCtrHdr #container {
        width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
        background: #FFFFFF;
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
        border: 1px none #000000;
        text-align: left; /* this overrides the text-align: center on the body element. */
    .oneColFixCtrHdr #header h1 {
        margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
        padding-top: 0px;
        padding-right: 0;
        padding-bottom: 0px;
        padding-left: 0;
    .oneColFixCtrHdr #mainContent {
        padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
        background: #FFFFFF;
        font-family: Tahoma, Geneva, sans-serif;
    .oneColFixCtrHdr #footer {
        padding: 0 10px;
        background-color: #CCC;
    .oneColFixCtrHdr #footer p {
        margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
        padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    .footer {
        font-family: Calibri;
        font-size: 11px;
        color: #333;
        font-style: normal;
        font-weight: normal;
        padding: 5px;
        line-height: 1px;
    .disclaimer {
        font-size: 11px;
        text-align: left;
    -->
    </style>
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="../Scripts/swfobject_modified.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body class="oneColFixCtrHdr">
    <div id="container">
      <div id="header">
        <h1>
          <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="781" height="200">
            <param name="movie" value="../Merit Pump Site Images/Merit_Banner-02-01.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="9.0.45.0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="../Scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="../Merit Pump Site Images/Merit_Banner-02-01.swf" width="781" height="200">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="9.0.45.0" />
              <param name="expressinstall" value="../Scripts/expressInstall.swf" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object>
        </h1>
      <!-- end #header --></div>
      <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="../MP-index.html">Home</a>    </li>
        <li><a href="../MP-Kobepumps.html" class="MenuBarItemSubmenu">Services</a>
          <ul>
            <li><a href="../MP-Kobepumps.html">KOBE Pumps</a></li>
            <li><a href="../MP-Myerspumps.html">MYERS Pumps</a></li>
    <li><a href="../MP-Industrial.html">Industrial</a></li>
    <li><a href="../MP-Oilfield.html">Oil Field</a></li>
          </ul>
        </li>
        <li><a href="../MP-Contact.html">Contact</a>    </li>
        <li><a href="../MP-About.html">About Us</a></li>
      </ul>
    <div id="mainContent">
      <p> </p>
      <!-- TemplateBeginEditable name="content" -->
      <p>Merit Pump and  Equipment is an authorized dealer for <b><font color="#900">Kobe, Weatherford and Myers</font></b> pumps  supplying you with both pumps and parts. We are also a factory authorized pump  service center for your pump repair needs.</p>
      <p class="MsoNormalCxSpMiddle" style="line-height:normal;"> <b><font color="#900">Myers</font></b> offers a complete  line of submersible sump, sewage, effluent,   grinder, non-clog and wastewater pumps, controls, basins and accessories,  reciprocating, self-priming and pumping  systems for residential, agricultural, commercial, municipal and industrial applications.</p>
      <p class="MsoNormalCxSpMiddle" style="line-height:normal;"><b><font color="#900">Myers Aplex</font></b> offers a  complete line of high quality, medium to heavy duty reciprocating pumps for  both intermittent and continuous duty.</p>
      <p class="MsoNormalCxSpMiddle" style="line-height:normal;"> <b><font color="#900">Kobe</font></b> offers a unique  vertical plunger pump, as well as the Weatherford  horizontal   design for high pressure applications. The &quot;Kobe&quot; pump is  especially well suited for extreme pressure services up to 30,000 PSIG.</p>
      <p align="center" class="disclaimer" style="line-height:normal;"> </p>
      <p align="center" class="disclaimer" style="line-height:normal;"><em>Other Lines we carry  include LMI metering pumps, Hydra-cell pumps, Vector Peristaltic pumps,  Grinnell butterfly valves, Milliken Valves, All-Flo diaphragm pumps, Blancett  flow meters, Pacer pumps, Proco Products expansion  joints and others.</em></p>
      <p align="center" class="MsoNormalCxSpMiddle" style="line-height:normal;"> </p>
      <table id="Table_01" width="740" height="60" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><a href="http://www.columbiantectank.com"><img src="../Merit Pump Site Images/Service1.jpg" alt="" width="195" height="60" border="0" /></a></td>
          <td><img src="../Merit Pump Site Images/Service2.jpg" width="172" height="60" alt="" /></td>
          <td><a href="http://www.femyers.com/"><img src="../Merit Pump Site Images/Service3.jpg" alt="" width="184" height="60" border="0" /></a></td>
          <td><img src="../Merit Pump Site Images/Service4.jpg" width="189" height="60" alt="" /></td>
        </tr>
      </table>
      <!-- TemplateEndEditable -->
      <p align="center" class="MsoNormalCxSpMiddle" style="line-height:normal;"> </p>
    </div>
      <div id="footer">
        <p><span class="footer">© 2006 Merit Pump &amp; Equipment CO. All rights reserved. | Home | About | Contact | FE Myers | Kobe Triplex |</span></p>
        <p><span class="footer">975 Lincoln Way West, Wooster, OH 44691 | PO Box 960</span></p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>

    Hi!
    1. file:///C: /Users/John/Desktop/Design/Merit%20Pump%20Website/MeritPump_ Template.dwt '
    1.1 Suspicious are always these strings starting with file:///, what means, "DW thinks that every file you have linked to is outside the local root folder":
    1.2. Don't use spaces in folders/filenames. Spaces get converted %20, you could use underscores eg.
    2. ../MP-Kobepumps.html
    Where is this file located? Please control your path in DW, maybe you need ../../, maybe you can do without it, depending on which level the file is situated/nested.
    ... maybe you can post a link to your page, no matter how it looks like.Hans-G.

  • Color Background in Side Bar Navigation Include

    I have two columns in the sub-pages of my website.  In column one, I have a sidebar navigation as an include and trying to add a color background.  I can't get it to work, where it automatically adjusts to the length of the content area in column two of the webpage.  So, on some pages the column one shading does not stretch as long as it needed. 
    I heard this is complicated to do to have it auto format rather than have a set area.  Does anyone know how to code this correctly?

    This is less a code thing and more of a technique thing.  Make a 2-toned background image the same width as your page #wrapper and repeat it vertically with CSS.  This technique is called Faux Columns.
    You can see a working demo here:
    http://alt-web.com/TEMPLATES/2-column-fixed-width-template.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Right side bar problems with BC template

    I'm using the BC template that was called Cadca from themforest. It has a nice thumbnail portfolio gallery with a drop down menu called Categories. I am trying to use the Categories feature on another page WITHOUT the thumbnail feature. The problem is that it seems to over ride the class="box_one_third last". Which means that any box with box_one_third now has a preview_icon showing up on the box.
    You can see it here:
    http://www.eplusmarketing.com/video-sample-testimonial_4.html  Look next to the pie chart on the right side bar you'll see a shadow of the preview icon peeking out. Plus notice the sidebar and the main content the dividing line graphic disappeared.
    The problem I'm having is with a  sidebar that has the box_one_third. I tired to change it to: box_one_half and the side bar slides under the main content as shown here:
    http://www.eplusmarketing.com/video-sample-testimonial_copy.html
    the preview icon is gone, the nice dividing graphic is back, but it is no longer a side bar. The entire sidebar moved under the main content.
    Any ideas on how to solve this issue?

    Can anyone please help me with this problem regarding my website using the CADAC template (see the complete issue above posted on Oct 12th) and the issue about the portfolio categories drop down menu found on the Cadac BC's template?  Thank you!!

  • While opening pdf files the menu bar, navigation bar  cracks unobviously and also close and minimise buttons  goes hidden..Facing the problem for last one month. Please help.

    while opening pdf files the menu bar, navigation bar  cracks unobviously and also close and minimise buttons  goes hidden..Facing the problem for last one month. Please help.

    The latest Kaspersky software version is 15.0.1.415 or 15.0.1.415ab.

  • Problem with side bar

    http://prosol1.com/mw_images/frontpage.jpg
    hi - i can't seem to figure out why the side bar background in the above snapshot will not stretch down with the rest of this text.  i tried copying and re-pasting the text, but no luck.
    thanks - mike

    A few changes to your CSS are required as shown below.  Replace what you have now with this and it should work as expected in all browsers.  Change links colors to whatever you wish. 
    .subnav {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 12px;
         line-height: 1.5;
         background-color: #F3F3F3;
         padding-left: 20px;
         border: 1px solid #EAEAEA;
    /**LINKS**/
    .subnav a {display:block;}
    .subnav a:link {color: maroon}
    .subnav a:visited {color: blue}
    .subnav a:hover {color: #FFF; background: #990000}
    .subnav a:active {color: green}
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.com/blogspot.com

  • Minor problem - side bars not extending to footer

    Hi-
    I created a page layout that includes two side bars on either side of the "body" area. Normally these have text in them and adjust in height based on what's contained in them. Well my design is one such that there is purposely no text included and it's just a rectangle extending vertically from header to footer. So in order to get it to look the way I wanted it to I had to set a specific height in pixels of 800px. Recently, I added a collage and some faux text as I am starting to work on this particular page. I noticed that the bottom has white space between the side bars (on either side of the body area) and the footer. I need the side bars to hit flush with the footer. (see other pages for what I mean). I can't figure out how to fix this. I know it's probably something fairly simple but would appreciate any help. I wonder if maybe by my specifying a certain height to these side bars that it'll mess up whenever I add content with a greater width than what's set (800px). Is there an easier way to do what I'm acheiving with the side bar and not hinder the look of the site when I add content?
    Here's the link to my page: http://www.ashleysperrydesigns.com/test/services.html
    Thanks for any and all help. I truely appreciate it!
    ashmic

    Your layout is badly broken for me in Firefox but I didn't check it in all browsers.  See screenshot.
    Keep your Spry Menus and images.  Simply replace the CSS Layout you're using now with something more suitable for your project goals (equal height columns). 
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Hiding navigation panes (side bar) using metadata or reader setting?

    Hi all,
    as the title already mentioned,
    I'm trying to get a pdf file generated using JasperReport displayed in the reader (within web browser) without the side bar/Nav. pane.
    At first I thought that should be done from the reader configuraton/setting, but then I found out that that's not completely correct.
    I can indeed hide the sidebar by using the parameter navpanes=0 as part of the URL. But this works only for version 6.* upwards(?).
    Now, I have in my hand 2 pdf files which I opened using the same reader (ver. 8). And one file is being shown with and the other without the sidebar.
    Can anyone please help me with any hints/idea?
    ps: I attached screenshots from both of the files. The one with sidebar has also darker grey background (which I think is normal) and the other one without has a lighter gray background
    Thanks in advance
    Regards
    Brody

    I wonder if anyone can tell me easily how to make the submenu's under the horizontal menu bar also appear horizontally?
    This question is more suited to the Spry forum.

  • How can I have the side bar in iTunes 12??

    I just installed iTunes 12 that was claimed to provide "a more pleasant interface for navigation"!?!?
    Personally, I do not find the new view format pleasant at all. I expected to be allowed to go back to the lateral bar visualization, finding it as a view option. It was quite upsetting finding out that the option disappeared from the menue. Did you have the brilliant idea to remove it, or did you simply hide it somewhere else? (I am definitely too old to play "hide and seek" with visualization options and I really do not have the time either)
    Probably, kids like big figures that do not require any reading skill, unfortunately I do not.
    I conclusion, how can I have the side bar visible again in iTunes 12???
    Thank you
    P.S. Playlists is similar to lateral bar, but not the same, as it is not ONE allowing to navigate music, movies, podacast, but one for each.

    The functionality of the sidebar has changed indeed. But what's the problem? Category's of the library have been separated from playlists and moved to one of the top bars. I think it's an improvement for people using iTunes as a media-management tool. In the old version the playlists were at the bottom of the sidebar and if you had all options activated you had to scroll down to find your playlists.
    You don't have to do that anymore. Your music library is now aside with the playlists. If you want to activate another categorie you can use the icons in the topbar and still keep the overview on your playlists.
    People who use iTunes for syncing iDevices seem less happy with this new presentation. It seems a minor adjustment to me, but others seems to think otherwise.

  • Website help: Creating a side bar then the main part of the webpage??

    Hi guys, im currently making a website in dreamweaver but ive coe into some problems and theyve got me stumped...
    basically, i have been using dreamweaver and ive managed to create a side bar for my website with separate div tages etc and now i want to create the main body of the page, eg the menu and the images but i cant get it do do what i want it to do...
    when i insert the div tag for the main body part of my page it is placed above the side bar when i want it to the side of it, inline with it.... /: its fustrting cust ive been able to style all of the side bar and ive wanted to complete the rest of the site but currently im unable to...

    OK, here is how you need to look at your page:
    The outermost defined area is the body. Generally, to set up a website, you create basic "applies to all" stuff in the body definitions in your style sheet:
    For example:
    body {
              font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
              color: #000;
              background-color: #FFFFFF;
              margin: 20px 0;
              padding: 0px;
    That's going to create normal paragraph text in the website as Lucidia Sans (or Lucidia Grande if the client doesn't have that defaulting to sans-serif if that is not available), text color is black, background is white, top margin is 20 pixels, clear left and right margins and clear all padding.
    Now, you need to enclose the "website" into something that encases everything and I usually call that an outer wrapper.
    .outer-Wrapper {
              width: 80%;
              max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
              min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
              background: #FFF;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    Explanations in comments.
    Now, you set up the rest of your page:
    .header {
    #nav {
              margin-left: 20%;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs 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 div 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 div and place a second div 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 div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div'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 divs 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 right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar {
              float: left;
              width: 20%;
              background-color: #cccccc;
              padding-bottom: 10px;
              color: #FFF;
    .content {
              padding: 10px 0;
              width: 80%;
              float: left;
              color: #000;
    Lastly, you want your footer to be below both columns, so you define that:
    .footer {
              padding: 10px 0;
              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 */
              background-color: #eeeeee; /*This makes it gray so that it is separated from the rest of the page, but isn't too dark for black text */
    Now, let's go to the html:
    Define your page. Dreamweaver will allow you to define a page as XHTML 1.0 transitional or strict or XHTML 1.1, HTML 4.01 transitional or strict or HTML5. Older versions of Dreamweaver have no HTML5 and may have older versons of HTML, but I either use XHTML 1.0 transitional or HTML5. There are good reasons for this.
    Dreamweaver will set up the site definitions depending on what you choose above the <head> area.
    Within the <head> area, you define the character set, give a title (make it unique for each page in your website) and point to your style sheet. You can use Dreamweaver's "Attach stylesheet." Any calls to JavaScript go here as well. If you have a separate style sheet for a drop-down menu structure or any other navigation, it will go there as well. Remember to close the <head> tag.
    Now, we define the body and go into the page:
    <body>
    <div class="outer-Wrapper">
    <div  ="header"> Header Goes Here</div>
    <div id="nav">Navigation placed here</div>
    <div class="sidebar">Your sidebar will go here</div>
    <div class="content">Your main content goes here and it will live to the right of your sidebar on the left</div>
    <div class="footer">I generally put the copyright information here and sometimes additional navigation in the footer</div>
    <div> <!-- Ends the outer-Wrapper -->
    </body>
    </html>
    This will absolutely work.

  • Why can't I upload my new pages, changes in nav & side bars

    The problem that I'm having with my site www.KosherWoman.com is I make a change to my template in DW CS5  & the changes do appear on the side bars & on the navigation on  all the pages when I tested them via F 12, etc. with Firefox & IE.  However, when I  upload it to my server, the changes don't appear on the pages or the navigation.  I've tried the put method locally & then I tried it on the remote view  Still no change. I then copied the entire site on my flast drive & had a friend load the site & try it on his computer in his office.   He encountered the exact same problems I did.  I've been adding new pages, adding to the navigation, changing the side bar ads & promos since this website went on line 8 months ago.  These problems just started a couple of weeks ago.  Thanks for any help you can provide.

    I took your advice & called Earthlink, our web host.   They wanted to check my FTP settings but just like when they changed their system a month ago,  I could access the 'home page' for changing the FTP settings but I couldn't click on anything.  When this happened a month ago, the web host rep
    'took over' my computer & changed the FTP settings but after about 10 tries the web host rep I was speaking to this time failed to make the necessary connection so he could make the changes by taking over my computer.  Then yelled at me saying I shouldn't rely on them, I should figure it out myself. When I asked to speak to a supervisor, he hung up on me.  So I don't think I'll get anywhere by contacting them again.

  • Wiki Side bar

    Hi.
    I am trying to use the wiki as a basic intranet. I can do everything I need to at the moment except one thing. I want to use the custom side bar as a navigation to get through the different sections of the wiki/intranet. I have setup the main pages with tags and the custom side bar shows up those pages. The problem is it only shows up 5 entries, and I have about 8 pages I need to display.
    Does any know if there is a way to make the custom sidebar display more than the default amount of entries?
    Any help would be appreciated.

    Ahh, OK. I'm not sure what your level of expertise is with the service. This will require some work. You need create your own Theme, and edit the menu sections of the theme.plist file within, then select that Theme for your wiki.
    The themes are kept in...
    /Library/Application Support/Apple/WikiServer/Themes/
    Here is a good description of the overall Wiki service of 10.6...
    http://manuals.info.apple.com/en_US/WikiServerAdmin_v10.6.pdf
    does that help?

  • My hard drive crashed recently and i can no longer see my web site address in the iWeb side bar

    I can n o longer see my web site address in the iweb side bar, how can I relocate it so i can edit my website

    Let me start with the general advise...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • Side bar auto expanding to fit longest filename in file dialog windows

    This may sound like a small problem but I have been finding it quite frustrating and it seems to have been introduced with the introduction of Lion (OS 10.7). I use the Finders sidebar to quickly access project folders. Now the names of these folders are often quite long... Say 40 to 50 characters long. Now go to an application and select open, save, import, export, etc. anything that will bring up a file dialog window the I find the side bar automaticly expands to the width of the longest file name in the side bar. If I resize it and then access the dialog box again it is back to that massive size.
    This never used to be a problem in snowleapord... Is there a way to fix this?

    I'm on 8.2 and I can't get it to fail no matter how I select the desktop. I haven't tried it in 8.0, but I imagine that if this really is a bug, they did know about it and fixed it with 8.2. If this causes a real problem for you, I would suggest upgrading if you can.

  • "All my files" has gone missing from side bar, can't get it back

    Hi,
    I have deleted the "All my files" (in Dutch: "Al mijn bestanden") link from the sidebar by accident. It is no longer available and I cannot get it back by going to the Finder Preferences. As you can see from the picture it is missing in the Finder Side bar, but in Preferences it still is checked. Moreover, it is also no longer available from the "Go"-Menu (in Dutch: "Ga"), SHIFT-CMD-F is grey.
    If I uncheck "All my files" in Preferences it automatically checks it again, but it does not reappear.
    Does anyone have a suggestion on how to get it back? I only want to do a Lion restore factory settings as a last resort. Thanks.

    When you restarted with the shift key held down, did the start up sequence look different from normal or just the same as usual?
    If it looked the same as usual, try it again. See here for how to do a safe boot if you're not sure:
    http://support.apple.com/kb/HT1455
    If you are sure you started safe mode correctly, and 'All my files' is still not showing, you should restart the computer holding down  'command-r' and choose 'Reinstall OS X Lion' from the window. This should not affect any of your personal folders or apps, but please do backup your system before doing this in case anything goes wrong.
    If you are sure you started safe mode correctly, and the problem was solved while in safe mode, restart your computer normally. If the problem reappears, go to
     > System Preferences... Login Items
    Make a note of the programs listed in the window. Select all and click the minus '-' button at the bottom of the window. Restart your computer. You should find the problem solved. Now add each one of those programs back to the Login Items list one at a time, restarting after adding each one. After each restart, check 'All my files'. If when you find it disappears, go back to Login Items and remove the last program you added. That's the culprit.

Maybe you are looking for

  • AR - Open Item for Customer

    Hi, I have an issue where we want to apply a credit memo to a particular open item - meaning we want to set off a credit memo to a specific document number....sometimes partially sometimes in full and want to be able to do a check list kind of thing

  • Submitted Podcast, but tracks are out of order

    I recently submitted a Podcast and it was approved by Apple, but the page brings up the tracks in a random order. In my RSS feed, the tracks are listed in the correct sequence, however most have identical creation dates. Does iTunes sort the tracks b

  • How to Enchance Search Purchase Order function in MIGO

    Hello guys, In MIGO transaction there is a Search functionality of PO is available. But it has limited fields. Is there a way we can add more fields in this search criterion? Thanks Abhijit

  • Bindings and custom components

    hi, i have created a component that wraps the TextInput control, but it does not work well with the Binding mechanism. here is the code: <vc:myTextInput text="{str}" y="8" tabIndex="0" x="100" id="in1"/> and the binding <mx:Binding source="in1.text"

  • RGB value -- RGB -- YCrCb -- RGB -- RGB value conversion help?

    Hi, I am using bufferedImages and the method getRGB() and setRGB(). I was wondering how I can convert a negative RGB value like -6262262 to RGB values like 155, 80, 90. Then convert those to Y' Cb Cr values like 0.23, 0.212, 013. And then I have to c