Bookmarks and tab titles display garbled text or text from another bookmark until moused over

I just upgraded to Windows 8 and loaded Firefox 18 - I imported my bookmarks HTML file and the bookmarks on the left display either garbage or the wrong title until I mouse over them. They then display correctly unless I mouse over them again. My tabs display bookmark titles until I mouse over them.

Could you try version 18.0.1? Also, please provide us with screen shots? And, you can check if your add-ons are causing this as well.
'''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
''(If you're not using it, switch to the Default theme.)''
* You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
* Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
''Don't select anything right now, just use "'Start in Safe Mode"''
''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
'''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
Please follow the [[Troubleshooting extensions and themes]] article for that.
''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

Similar Messages

  • My bookmarks and tabs disappeared. Tried to import them from bookmark list, now they are completely gone.

    My issue began after I had a "Blue Screen of Death" on my laptop. Since then, all of my internet settings aren't correct and Firefox does not load for several minutes (longest was 30 min). All of my bookmarks and tabs were gone when I finally got Firefox to open. I just tried to (Ctrl + Shift + B), all my bookmarks were there, however when I tried to import them, nothing happened and they've disappeared.
    Prior to Ctrl+Shift+B I had reloaded a previous version of Firefox. Yesterday I loaded the current version...still no help to my bookmarks/settings.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.com/kb/Bookmarks+not+saved#w_places-database-file

  • When running Firefox with normal view with bookmarks and tabs the display for the tab is jumping up and down about 1/4 of inch - display is ok if used in full screen but when go back to normall havers again. this ony started happening last night after

    Am having problems with display hovering in open tabs. I used Full screen last night when browsing for first time and since then when I go back to normal view the window shakes up and down about 1/4 inch and have to go to full screen for steady view. The toolbars are all steady it is only the web page.
    == This happened ==
    Every time Firefox opened
    == Last night after using full screen.

    Do you have any saved bookmarks on the Bookmarks Toolbar, or that that Toolbar empty and you have it being displayed??
    Try opening View > Toolbars and click on the Bookmark Toolbar item to remove the check-mark, and then see how that affects that "jumping" or vertical oscillation of the UI.
    If that doesn't solve your problem, you can try the Firefox SafeMode and verify that problem doesn't exist in that troubleshooting mode.
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    If it is gone in SafeMode, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Need to read text file content and have to display it in multiline text box

    dear all,
    Need to read text file content and have to display it in multiline text box.
    actually im new to file handling. i have tried up to get_line and put_line.
    in_file := TEXT_IO.FOPEN ('D:\SAMPLE.txt', 'r');
    TEXT_IO.GET_LINE (in_file,linebuf);
    i dont know how to assign this get_line function to text item
    pls help me in this regards,

    Simply write:
    in_file := TEXT_IO.FOPEN ('D:\SAMPLE.txt', 'r');
    TEXT_IO.GET_LINE (in_file,linebuf);
    :block2.t1 := chr(10)||:block2.t1||chr(10)||linebuf;
    chr(10) --> is for new line character

  • Google removed from bookmarks and when selecting safari it does not automatically open to bookmarks as previously did

    google removed from bookmarks and when selecting safari it does not automatically open to bookmarks as previously did

    When Safari launches, tap in the address field (the one on the left) and type "www.google.com" then hit the "Go" button.
    After the page finishes loading, hit the "Action" button (the middle button on the bottom button bar that looks like an arrow coming out of a rectangle) and select "Add to Bookmarks" to add the Google page to your bookmarks.
    After that, you can hit the Bookmarks button (the button that looks like an open book in the bottom button bar) to access the Google bookmark you just created.

  • Set Default Spry Tabbed Panel As Close Until Mouse Over

    Dear All,
    Is there a way to set the default spry tabbed panel to be closed when the page load untilI mouse over it??
    here is the link to my page http://www.senhuiauto.com/model_code_link.html. As you can see, it roll down by default.
    How to fix??
    Below is my SpryTabbedPanel.js
    var Spry;
    if (!Spry) Spry = {};
    if (!Spry.Widget) Spry.Widget = {};
    Spry.Widget.TabbedPanels = function(element, opts)
    this.element = this.getElement(element);
    this.defaultTab = 0; // Show the first panel by default.
    this.bindings = [];
    this.tabSelectedClass = "TabbedPanelsTabSelected";
    this.tabHoverClass = "TabbedPanelsTabHover";
    this.tabFocusedClass = "TabbedPanelsTabFocused";
    this.panelVisibleClass = "TabbedPanelsContentVisible";
    this.focusElement = null;
    this.hasFocus = false;
    this.currentTabIndex = 0;
    this.enableKeyboardNavigation = true;
    Spry.Widget.TabbedPanels.setOptions(this, opts);
    // If the defaultTab is expressed as a number/index, convert
    // it to an element.
    if (typeof (this.defaultTab) == "number")
      if (this.defaultTab < 0)
       this.defaultTab = 0;
      else
       var count = this.getTabbedPanelCount();
       if (this.defaultTab >= count)
        this.defaultTab = (count > 1) ? (count - 1) : 0;
      this.defaultTab = this.getTabs()[this.defaultTab];
    // The defaultTab property is supposed to be the tab element for the tab content
    // to show by default. The caller is allowed to pass in the element itself or the
    // element's id, so we need to convert the current value to an element if necessary.
    if (this.defaultTab)
      this.defaultTab = this.getElement(this.defaultTab);
    this.attachBehaviors();
    Spry.Widget.TabbedPanels.prototype.getElement = function(ele)
    if (ele && typeof ele == "string")
      return document.getElementById(ele);
    return ele;
    Spry.Widget.TabbedPanels.prototype.getElementChildren = function(element)
    var children = [];
    var child = element.firstChild;
    while (child)
      if (child.nodeType == 1 /* Node.ELEMENT_NODE */)
       children.push(child);
      child = child.nextSibling;
    return children;
    Spry.Widget.TabbedPanels.prototype.addClassName = function(ele, className)
    if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) != -1))
      return;
    ele.className += (ele.className ? " " : "") + className;
    Spry.Widget.TabbedPanels.prototype.removeClassName = function(ele, className)
    if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) == -1))
      return;
    ele.className = ele.className.replace(new RegExp("\\s*\\b" + className + "\\b", "g"), "");
    Spry.Widget.TabbedPanels.setOptions = function(obj, optionsObj, ignoreUndefinedProps)
    if (!optionsObj)
      return;
    for (var optionName in optionsObj)
      if (ignoreUndefinedProps && optionsObj[optionName] == undefined)
       continue;
      obj[optionName] = optionsObj[optionName];
    Spry.Widget.TabbedPanels.prototype.getTabGroup = function()
    if (this.element)
      var children = this.getElementChildren(this.element);
      if (children.length)
       return children[0];
    return null;
    Spry.Widget.TabbedPanels.prototype.getTabs = function()
    var tabs = [];
    var tg = this.getTabGroup();
    if (tg)
      tabs = this.getElementChildren(tg);
    return tabs;
    Spry.Widget.TabbedPanels.prototype.getContentPanelGroup = function()
    if (this.element)
      var children = this.getElementChildren(this.element);
      if (children.length > 1)
       return children[1];
    return null;
    Spry.Widget.TabbedPanels.prototype.getContentPanels = function()
    var panels = [];
    var pg = this.getContentPanelGroup();
    if (pg)
      panels = this.getElementChildren(pg);
    return panels;
    Spry.Widget.TabbedPanels.prototype.getIndex = function(ele, arr)
    ele = this.getElement(ele);
    if (ele && arr && arr.length)
      for (var i = 0; i < arr.length; i++)
       if (ele == arr[i])
        return i;
    return -1;
    Spry.Widget.TabbedPanels.prototype.getTabIndex = function(ele)
    var i = this.getIndex(ele, this.getTabs());
    if (i < 0)
      i = this.getIndex(ele, this.getContentPanels());
    return i;
    Spry.Widget.TabbedPanels.prototype.getCurrentTabIndex = function()
    return this.currentTabIndex;
    Spry.Widget.TabbedPanels.prototype.getTabbedPanelCount = function(ele)
    return Math.min(this.getTabs().length, this.getContentPanels().length);
    Spry.Widget.TabbedPanels.addEventListener = function(element, eventType, handler, capture)
    try
      if (element.addEventListener)
       element.addEventListener(eventType, handler, capture);
      else if (element.attachEvent)
       element.attachEvent("on" + eventType, handler);
    catch (e) {}
    Spry.Widget.TabbedPanels.prototype.onTabClick = function(e, tab)
    this.showPanel(tab);
    Spry.Widget.TabbedPanels.prototype.onTabMouseOver = function(e, tab)
    this.addClassName(tab, this.tabHoverClass);
    Spry.Widget.TabbedPanels.prototype.onTabMouseOut = function(e, tab)
    this.removeClassName(tab, this.tabHoverClass);
    Spry.Widget.TabbedPanels.prototype.onTabFocus = function(e, tab)
    this.hasFocus = true;
    this.addClassName(this.element, this.tabFocusedClass);
    Spry.Widget.TabbedPanels.prototype.onTabBlur = function(e, tab)
    this.hasFocus = false;
    this.removeClassName(this.element, this.tabFocusedClass);
    Spry.Widget.TabbedPanels.ENTER_KEY = 13;
    Spry.Widget.TabbedPanels.SPACE_KEY = 32;
    Spry.Widget.TabbedPanels.prototype.onTabKeyDown = function(e, tab)
    var key = e.keyCode;
    if (!this.hasFocus || (key != Spry.Widget.TabbedPanels.ENTER_KEY && key != Spry.Widget.TabbedPanels.SPACE_KEY))
      return true;
    this.showPanel(tab);
    if (e.stopPropagation)
      e.stopPropagation();
    if (e.preventDefault)
      e.preventDefault();
    return false;
    Spry.Widget.TabbedPanels.prototype.preorderTraversal = function(root, func)
    var stopTraversal = false;
    if (root)
      stopTraversal = func(root);
      if (root.hasChildNodes())
       var child = root.firstChild;
       while (!stopTraversal && child)
        stopTraversal = this.preorderTraversal(child, func);
        try { child = child.nextSibling; } catch (e) { child = null; }
    return stopTraversal;
    Spry.Widget.TabbedPanels.prototype.addPanelEventListeners = function(tab, panel)
    var self = this;
    Spry.Widget.TabbedPanels.addEventListener(tab, "mouseover", function(e) { return self.onTabClick(e, tab); }, false);
    Spry.Widget.TabbedPanels.addEventListener(tab, "mouseover", function(e) { return self.onTabMouseOver(e, tab); }, false);
    Spry.Widget.TabbedPanels.addEventListener(tab, "mouseout", function(e) { return self.onTabMouseOut(e, tab); }, false);
    if (this.enableKeyboardNavigation)
      // XXX: IE doesn't allow the setting of tabindex dynamically. This means we can't
      // rely on adding the tabindex attribute if it is missing to enable keyboard navigation
      // by default.
      // Find the first element within the tab container that has a tabindex or the first
      // anchor tag.
      var tabIndexEle = null;
      var tabAnchorEle = null;
      this.preorderTraversal(tab, function(node) {
       if (node.nodeType == 1 /* NODE.ELEMENT_NODE */)
        var tabIndexAttr = tab.attributes.getNamedItem("tabindex");
        if (tabIndexAttr)
         tabIndexEle = node;
         return true;
        if (!tabAnchorEle && node.nodeName.toLowerCase() == "a")
         tabAnchorEle = node;
       return false;
      if (tabIndexEle)
       this.focusElement = tabIndexEle;
      else if (tabAnchorEle)
       this.focusElement = tabAnchorEle;
      if (this.focusElement)
       Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "focus", function(e) { return self.onTabFocus(e, tab); }, false);
       Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "blur", function(e) { return self.onTabBlur(e, tab); }, false);
       Spry.Widget.TabbedPanels.addEventListener(this.focusElement, "keydown", function(e) { return self.onTabKeyDown(e, tab); }, false);
    Spry.Widget.TabbedPanels.prototype.showPanel = function(elementOrIndex)
    var tpIndex = -1;
    if (typeof elementOrIndex == "number")
      tpIndex = elementOrIndex;
    else // Must be the element for the tab or content panel.
      tpIndex = this.getTabIndex(elementOrIndex);
    if (!tpIndex < 0 || tpIndex >= this.getTabbedPanelCount())
      return;
    var tabs = this.getTabs();
    var panels = this.getContentPanels();
    var numTabbedPanels = Math.max(tabs.length, panels.length);
    for (var i = 0; i < numTabbedPanels; i++)
      if (i != tpIndex)
       if (tabs[i])
        this.removeClassName(tabs[i], this.tabSelectedClass);
       if (panels[i])
        this.removeClassName(panels[i], this.panelVisibleClass);
        panels[i].style.display = "none";
    this.addClassName(tabs[tpIndex], this.tabSelectedClass);
    this.addClassName(panels[tpIndex], this.panelVisibleClass);
    panels[tpIndex].style.display = "block";
    this.currentTabIndex = tpIndex;
    Spry.Widget.TabbedPanels.prototype.attachBehaviors = function(element)
    var tabs = this.getTabs();
    var panels = this.getContentPanels();
    var panelCount = this.getTabbedPanelCount();
    for (var i = 0; i < panelCount; i++)
      this.addPanelEventListeners(tabs[i], panels[i]);
    this.showPanel(this.defaultTab);

    You may be better off asking this question over at the forum dedicated to the Spry Widgets:
    Spry forum.

  • Ok. so im trying to sync my ipod to a new computer, i type in my apple id and password, then someone elses email pops up from another country, how do i fix this

    Ok. so im trying to sync my ipod to a new computer, i type in my apple id and password, then someone elses email pops up from another country, how do i fix this
               Please help me.

    If the problem persists, you'll probably have to make another apple id, it wont take off any games or music or apps or anything you've bought it will all stay there, i have two apple id's and i don't have a problem with anything.

  • Bookmarks and web page display question

    I have been used to using Netscape and Internet Explorer where you can have a vertical column of bookmarks running up and down on the left side...and then the window to the right will display the web page...i.e., you don't have to click on a separate bookmarks page, open your link, and then toggle back to the Bookmarks page.
    I like the idea of having ALL of my many bookmarks available to me on the lefthand side while seeing the pages open in the window to the right.
    Is there any way Safari can provide close to that same layout? I know about how to use tabs and I know of the bookmark horizontal bar, but I do miss the vertical on the left bookmarks column showing everything (several hundred) and just clicking and having the web page pop open on the right while keeping all my bookmarks available on the same screen.
    Can Safari do this? Or what might be the closest workaround?
    Thanks,
    John

    Sorry for the confusion, here's a more detailed description of what I'm aiming for.  Also, I don't have any web pages published or a web host yet so I can't post a URL to my page.
    This Adobe forums page acts just like my web page.  On the right side of this Adobe page, there is a gray and white checkered design.  If the bookmarks (or favorites) are closed (I am using Firefox with a bookmark toolbar on the left side), then the checkered design is pretty wide.  If the bookmark toolbar is opened, then part of the checkered pattern is cut off from view, but the left side of the page is still completely in view.
    Coca Cola's website is more of how I want my website to be:   http://www.coca-cola.com/index.jsp
    On both sides of Coca Cola's website, there is a gray-white gradient.  If the bookmarks are closed, then the gradient pattern on both sides are exactly equal in width.  If the bookmarks are opened, then part of the outside portion the the page is cut off on both the left and right sides quite a bit, but the gradient design widths on the left and right are both still equal in width.
    So if the opened bookmarks are going to cut off part of the web page from view, I would prefer to have both parts of the left and right side removed instead of just the right side.  I tried centering the page by following David Powers' thread, but either I didn't do it correctly or it didn't help with this problem.
    I hope this was clearer.

  • Lost bookmarks and tabs after upgrade to Firefox 12

    Against my better judgment I upgraded to Firefox 12. Immediately all the bookmarks were gone. Every time I started Firefox, I got a "New Tab" with nothing else. No bookmarks. No remembering of the previous tabs. I did a restore and thought I had fixed it since everything came back, however once I shut down Firefox and started it again it was back to the blank Firefox with nothing and "New Tab". I was previously on Firefox 10 and very reluctantly ever upgrade, but I had updated another computer to version 12 with no issues so I said "what the heck, worked once should work again." Wrong. Unfortunately this is my main computer. Please help.

    I fixed it by following cor-el's advice below. Make sure to check View->Toolbars->Bookmarks Toolbar when you restart Firefox after doing the solution below.
    Thanks cor-el.
    '''If a places.sqlite.corrupt file exists'''
    If your Firefox profile folder includes a "places.sqlite.corrupt" file, one reported fix is to open the Firefox profile folder and, after closing Firefox completely, delete or rename the places.sqlite file and then rename "places.sqlite.corrupt" to "places.sqlite". (If you see any other places.sqlite* files, delete those as well, so that only one places.sqlite file remains.) It is possible that certain security or "cleanup" software (e.g., CCleaner) is causing the places.sqlite file corruption. It is also possible that Firefox was not closed properly, as might happen when your computer loses power with Firefox running, which can cause a corrupt places.sqlite file. Always make sure that you close Firefox properly (e.g., no Firefox processes in the Windows Task Manager) before shutting down the computer. [9]

  • Followed the instructions in "the bookmarks and history..." article but cannot retrieve my bookmarks. Initial problem was caused by an AVG Free upgrade which was done this morning. How do I get my "stuff" back?

    Upgraded AVG Free this morning. Next Firefox opening got the message "bookmarks and history system will not be functional" etc.
    Followed the instructions in the article but no recovery occurred. Then spent 45 minutes on the phone with AVG, ending with them suggesting I re-install Firefox which I did (probably not wise). Still can't get back to where I was yesterday when I was a happy camper. How can I do that?

    No, AVG did not remove places.sqlite from the profile. In following the instructions given by Firefox I renamed that file by adding .old. The instructions then told me to re-open Firefox, and that when it reopened "it would create a new places database. Your browsing history will be lost but Firefox will automatically import your bookmarks from the most recent backup file." This DID NOT happen. I have not yet tried the steps in the "Lost Bookmarks" article.
    Yes, the folder "bookmarkbackups" is still in the profile folder, and time-wise it predates me renaming the places file.
    I do not know whether it is possible to set AVG to ignore certain directions?

  • My old PC, when scrolling through bookmarks and clicking, would return to the same place when opening bookmarks again. My Mac, book marks always open at the top of the list. Can this be set like my PC?

    The PC, (Sony Vaio) if i scrolled half way through my bookmarks and clicked on one, if i returned to bookmarks it would open in the same location from where i clicked previously.
    The Mac, every time i open my bookmarks, it opens at the top of the list.
    Can this be adjusted to work like my old PC?
    Thank you.

    Please see the Back button as depicted in this snapshot...
    Thanks
    Andaleeb

  • After a recent Firefox update, I lost all my Bookmarks and recent sites visited. Also, I am unable to Bookmark any page now.

    After a recent Firefox update, all the Bookmarks I had saved, disappeared. Also, I am unable to scroll down to see the sites I had already visited and saved. Now, when I go to a page I would like to Bookmark, I am unable to do so. I will click on Bookmark This Page but it does not work.

    For the lost bookmark issue, see [[Lost Bookmarks]] and for the bookmarking issue, see [[Bookmarks not saved]].

  • How do you create the 'cream pop-up info text boxes' that appear when you hover mouse over?

    Hi people,
    I really need to know how you create the 'cream pop-up info text boxes' that appear when you hover your mouse over an object on a webpage (and often in any program e.g. Photoshop) for more than a second. I need to know because the logo on my website is the navigation tool used to return to the homepage. It is always found in the top left so the user can always click it to return.
    The only problem is im the only one who knows that when you click my logo, you return to the homepage. I need one of these 'cream info boxes' (forgive my lack of knowledge) to appear so the user will figure it out.
    Thanks for taking the time to read my question...

    Using your code it should look like this where title attribute is in red:
    <div id="apDiv2"><a href="index.html"><img src="divs_dw/jtgd_logo_trans.png" alt="jtgd_logo" title="your description goes here" width="176" height="163" /></a></div>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Accessing display object on the stage from another class

    I've googled this to no avail, I've only found how to manipulate the stage itself and not a display object on it, and I'm noob enough to not be able to figure it out from there. :/
    I have a movie clip on the main timeline with instance name displayName. I created a button that should change what frame displayName goes to (in order to...did you guess it?! diplay the Name of the button. Awesome. )
    So I am trying to write the code in a reusable fashion and have the buttons all linked to a class called GeoPuzzle. Inside GeoPuzzle I instantiate a touch event and run the code. However, the function has to be able to change displayName in the main part of the timeline and, of course, the compiler says displayName doesn't exist because I'm in a class and I'm talking about the stage.
    Here is the simplified code in the class:
    package  com.freerangeeggheads.puzzleography {
        import flash.display.MovieClip;
        import flash.events.TouchEvent;
        public class GeoPuzzle extends MovieClip {
            //declare variables
            public function setInitial (abbrev:String, fullName:String, isLocked:Boolean):void {
                //set parameters
                this.addEventListener(TouchEvent.TOUCH_BEGIN, geoTouchBeginHandler);
            public function GeoPuzzle (): void {
            public function geoTouchBeginHandler (e:TouchEvent): void {
                   e.target.addEventListener(TouchEvent.TOUCH_END, geoTouchEndHandler);
                   //some other methods
                   nameDisplay.gotoAndStop(e.target.abbrev);
            public function geoTouchEndHandler (e:TouchEvent): void {
                //some other methods
               nameDisplay.gotoAndStop("USA");
    The lines in bold are my problem. Now this code doesn't actually execute as is so if you see an error in it, yeah, I have no idea what the problem is, but it DID execute before and these lines still gave me trouble so I'm trying to troubleshoot on multiple fronts.
    How can I tell displayName to change it's current frame from within display object class?
    Thanks!

    if displayName is a GeoPuzzle instance, use:
    package  com.freerangeeggheads.puzzleography {
        import flash.display.MovieClip;
        import flash.events.TouchEvent;
        public class GeoPuzzle extends MovieClip {
            //declare variables
            public function setInitial (abbrev:String, fullName:String, isLocked:Boolean):void {
                //set parameters
                this.addEventListener(TouchEvent.TOUCH_BEGIN, geoTouchBeginHandler);
            public function GeoPuzzle (): void {
            public function geoTouchBeginHandler (e:TouchEvent): void {
                   e.target.addEventListener(TouchEvent.TOUCH_END, geoTouchEndHandler);
                   //some other methods
                   this.gotoAndStop(this.abbrev);
            public function geoTouchEndHandler (e:TouchEvent): void {
                //some other methods
               this.gotoAndStop("USA");

  • Why is there no option for a Black ipod anymore/ I've seen the option on other websites, but this website no longer has it. And if I get the Black iPod Touch from another website, will it be old and IOS 6, because the option went away long before IOS 7

    I want a Black iPod Touch Fifth Generation, however I do not see an option for it. I have seen the option before, but it is no longer there, just like the option for a White iPod Touch. I still see the option for a Black iPod on other websites, such as Amazon. I wonder if it will not be updated and slower if I buy it from another websites that sell a Black version, because I think Apple might have eliminated that option for the iPod Touch Fifth Generation.

    No there is the option for a black iPod touch 5th Generation. However, they call it Space Gray now. It provides a black front screen and a slightly gray colored aluminum on the back.

Maybe you are looking for

  • Back UP Old Version of iWeb and all Domain Files FIRST

    ** Originally posted in the other iWeb forum ** I know this is a tired theme, but since iWeb was updated today to version 2.0, I want to make sure that people understand they can, and should, retain their original installation of iWeb 1.1.2 if they'r

  • How to split text according to the textfield size

    Hi, its very urgent if anybody can help me out..... i am working on an e-learning course where all the text is coming through XML. Client is very specific about not to use scrollbar. They want to use more and back buttons to show the rest of the text

  • Query - select values for variables form list / Bex 7

    Hello together, when I open a query in the 'Business Explorer Analyzer 7' and I want to select the values for my variables from list, BW shows always the values from history.  Is it possible to change this? I want to see always the single values. Tha

  • How do I get grid all the way to upper left?

    I'm using a grid on a page. It won't go all the way to the upper left or top. This is what is causing white space to appear between my frames. It goes almost to the top, but not quite. I know there is a way to make the grid go all the way to the top.

  • Using library items in templates

    I'm trying to use library items in a template but Dreamweaver 8 keeps on adding extra extra closing tags. Is there some trick to using them?