RSS, Back and Slideshow buttons not displaying correctly

I just finished my new wesite in Iweb and published it to .mac. Everything is working fine in Iweb but when I look at the published site the RSS, Subscribe, Back buttons are displaying really screwy. There are added buttons where I didn't put them. How can I fix this? It is occurring specifically on my photo album pages.
Janer

Publish your site to and folder on the desktop and double click the index.html file to launch your site in the browser.
If the page looks OK do a "Publish all to Mac".
If its still not right you'll have to go back to the iWeb page and try resetting the buttons and then do a Publish All.

Similar Messages

  • I want the reload button to appear outside the address bar (on the left, next to the back and forward buttons), not at the extreme end of the address bar. How can I do this?

    I want to re-position the reload button to appear outside the address bar (on the left, next to the back and forward buttons), not where it is at the moment, which is at the extreme end of the address bar and is a real hassle to use. How can I do this?

    To move the Stop and Reload buttons to their position to the left of the location bar you can use these steps:
    * Open the Customize window via "View > Toolbars > Customize"
    * Drag the Reload and Stop buttons to their previous position to the left of the location bar.
    * Set the order to "Reload - Stop" to get a combined "Reload/Stop" button.
    * Set the order to "Stop - Reload" or separate them otherwise (Space or Separator) to get two distinct buttons.

  • Login action buttons no longer work and some pages not displaying correctly after upgrade.

    After recent update, some web pages not displaying correctly and Login buttons on some sites do not work. I've updated my plugins and restarted computer, but problems remains. Is this Java, Javascript or something else? Same pages are working fine in IE.

    Please update the firefox to the latest version of firefox 26
    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • InDesign 6 Interactive Buttons Not Displaying Correctly in Acrobat X

    Forgive me if this has been asked. When I create interactive buttons in InDesign 6, their display is erratic in Acrobat X. Sometimes they display correctly. Sometimes, their display is erratic and sometimes they do not display at all. I have noticed that in Acrobat X, the cursor changes to the hand over the correct area, but nothing happens when I click. Oddly enough, the buttons always display correctly in Reader. This is fine for my users but makes my job in doing the final prep very difficult.

    I’ve seen this reported in this past. It’s not an InDesign issue or the files wouldn’t work in Reader.
    If you get any answers in the Acrobat forum, please come back and share them.
    Bob

  • How to fix the firefox buttons not displaying correctly (i.e. the "save file" button when trying to install an add on)?

    For example, the button for "save file" when downloading an add-on does not display correctly. It works nevertheless, but the button itself is not showing up correctly.
    *edit: sp errors*

    It looks that you have made changes to the appearance of button that cause items and text to be larger.
    In your case this doesn't seem to work properly with the consequence that the middle part of the button gets distorted.
    I'm curious if this artifact would move to the other (Cancel) button or disappear if you would use the Tab key or cursor key to set focus to the Cancel button or if it is a problem with the label text that isn't default (OK or similar).

  • InDesign 6 Buttons Not Displaying Correctly in Acrobat X

    Forgive me if this has been asked. When I create interactive buttons in InDesign 6, their display is erratic in Acrobat X. Sometimes they display correctly. Sometimes, their display is erratic and sometimes they do not display at all. I have noticed that in Acrobat X, the cursor changes to the hand over the correct area, but nothing happens when I click. Oddly enough, the buttons always display correctly in Reader. This is fine for my users but makes my job in doing the final prep very difficult. As further information, with small book files, the display is fine, but as pages are added, button display goes haywire.

    Lori,
    Thanks for your response. This is an incredibly painful bug. I hope Adobe is a little more attentive than they usually are in fixing this. I have more than 100 interactive books which I must convert and maintain (they're our equipment manuals). Not having full functionality, especially given the cost of the software, is a serious issue. Any suggestions as to who needs to be contacted for follow up?

  • Group Layout- Button not displaying correctly

    Hello all,
    I am having a problem with group layout and having a button display incorrectly. Here is my code:
         public HRES_AboutBox(){
              initComponents();
         private void initComponents(){
              //--------Set-Up---Frame------------
              frameLocation = Toolkit.getDefaultToolkit().getScreenSize();
              frameWidth = frameLocation.width;
              frameHeight = frameLocation.height;
              aboutFrame = new JFrame(FRAMETITLE);
              aboutFrame.setPreferredSize(new Dimension(487,212));
              aboutFrame.setLocation(frameWidth / 4, frameHeight / 4);
              aboutFrame.setMaximumSize(new Dimension(800,600));
              aboutFrame.pack();
              aboutFrame.setVisible(true);
              aboutFrame.setDefaultCloseOperation(EXIT_ON_CLOSE);
              aboutFrame.setTitle(FRAMETITLE);
              setupComponents();
    private void setupComponents(){
         //--------Set-Up---Button------------
         closeButton = new JButton();
         closeButton.setName(BUTTONNAME);
         //--------Set-Up---Logo------------
         picURL = HRES_AboutBox.class.getResource("/testLogo.jpg");
         appPic = new ImageIcon(picURL);
         //--------Set-Up---Labels------------
         appTitleLabel = new JLabel();
         versionLabel = new JLabel();
         appVersionLabel = new JLabel();
         vendorLabel = new JLabel();
         appVendorLabel = new JLabel();
         homepageLabel = new JLabel();
         appHomepageLabel = new JLabel();
         appDescLabel = new JLabel();
         imageLabel = new JLabel();
         appTitleLabel.getFont().deriveFont
            (appTitleLabel.getFont().getStyle()| Font.BOLD, appTitleLabel.getFont().getSize() + 4);
         appTitleLabel.setText("T.E.S.T - Test Text for Label");
            appTitleLabel.setName("Application Title Label");
         versionLabel.getFont().deriveFont
           (versionLabel.getFont().getStyle() | Font.BOLD, versionLabel.getFont().getSize() + 4);
            versionLabel.setText(VERSIONLABELSTRING);
            versionLabel.setName("Version Label");
            appVersionLabel.setText(APPVERSIONLABELSTRING);
            appVersionLabel.setName("Application Version Label");
            vendorLabel.getFont().deriveFont
           (vendorLabel.getFont().getStyle() | Font.BOLD, vendorLabel.getFont().getSize() + 4);
            vendorLabel.setText(VENDORLABELSTRING);
            vendorLabel.setName("Vendor Label");
            appVendorLabel.setText(APPVENDORLABELSTRING);
            appVendorLabel.setName("Application Vendor Label");
            homepageLabel.getFont().deriveFont
            (homepageLabel.getFont().getStyle()| Font.BOLD, homepageLabel.getFont().getSize() + 4);
            homepageLabel.setText(HOMEPAGELABELSTRING);
            homepageLabel.setName("Homepage Label");
            appHomepageLabel.setText(APPHOMEPAGELABELSTRING);
            appHomepageLabel.setName("Application Homepage Label");
            appDescLabel.setText(APPDESCLABELSTRING);
            appDescLabel.setName("Application Description Label");
            imageLabel.setIcon(appPic);
            imageLabel.setName("Image Label");
            //--------Set-Up---Layout------------
            layout = new GroupLayout(aboutFrame.getContentPane());
            aboutFrame.getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                     layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                     .addGroup(layout.createSequentialGroup()
                         .addComponent(imageLabel)
                         .addGap(18, 18, 18)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.TRAILING)
                             .addGroup(GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
                                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                                     .addComponent(versionLabel)
                                     .addComponent(vendorLabel)
                                     .addComponent(homepageLabel))
                                 .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                                     .addComponent(appVersionLabel)
                                     .addComponent(appVendorLabel)
                                     .addComponent(appHomepageLabel)))
                             .addComponent(appTitleLabel, GroupLayout.Alignment.LEADING)
                             .addComponent(appDescLabel, GroupLayout.Alignment.LEADING, GroupLayout.DEFAULT_SIZE, 329, Short.MAX_VALUE)
                             .addComponent(closeButton))
                         .addContainerGap())
              layout.setVerticalGroup(
                     layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                     .addComponent(imageLabel, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                     .addGroup(layout.createSequentialGroup()
                         .addContainerGap()
                         .addComponent(appTitleLabel)
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addComponent(appDescLabel)
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(versionLabel)
                             .addComponent(appVersionLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(vendorLabel)
                             .addComponent(appVendorLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(homepageLabel)
                             .addComponent(appHomepageLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, 19, Short.MAX_VALUE)
                         .addComponent(closeButton)
                         .addContainerGap())
              pack();
         public void closePasswordBox(){
              dispose();
         public static void main(String [] args){
              HRES_AboutBox hra = new HRES_AboutBox();
              if(hra.isVisible() == false){
                   hra.setVisible(true);
    }When I run this it comes out fairly alright but the button in the lower right corner does not display correctly, i have tried setting the size of the button but that does not solve the problem. If anyone can give any advice or info on how to get it to display right I would appreciate it.

    Hi,
    I usually only use the GroupLayout when using a GUI builder like the one in NetBeans.
    If I need to layout something manually I usually use a combination of the other layout managers.
    Sometimes I combine the two: eg. static layout with the GUI builder, dynamic layout by hand
    But if you want to use the GroupLayout manually, check:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/group.html
    Otherwise check:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html

  • Back and home buttons not functioning

    Hi,
    A few days ago, I noticed that the back button on my Lumia 920 failed to respond at times and I'd have to use the home button to escape out of whatever I was doing. Then yesterday, both the back and home buttons failed to work. The search button is still functioning but the phone isn't really usable as the only way to exit an app is to turn the phone off.
    I did a power cycle, a hard reset, and then I returned the phone to factory settings, which put it in a "gears" situation for about 6 hours until I finally got it to boot up again. That didn't fix the button issue.
    Nokia says, since I had the screen locally replaced several months ago,  the phone is no longer under warranty. They wil not repair it at their service center in Texas and my only recourse is to send it to Palco.
    I spoke to Palco and they are unable to give me any information as to whether the phone is repairable. They just want me to spend money to send it to Alabama, give then $15 + shipping to diagnose it - they say it will take 5 - 10 days just to diagnose the problem. I can't be without a phone for 2 weeks if I don't even know if it can be repaired. I'm angry that the only authorized repair center in the U.S. is in Alabama and they have no techs you can speak to on the phone. It's really the worst customer service I've ever seen.
    Has anybody else ever experienced this issue? Were you able to get your phone repaired? I am going to see the guy that replaced the screen for me, but when I spoke to him on the phone he thought it was odd that 1 of the buttons still worked and wasn't at all convinced that he could fix it. He's never seen this problem before.
    Thanks for any guidance,
    HB

    hi hbjor
    I face the same problem :/
    I was checking my mailes just right now... and suddenly i noticed non of my navigation bar work
    what did you do finaly ?
    hbjor wrote:
    Hi,
    A few days ago, I noticed that the back button on my Lumia 920 failed to respond at times and I'd have to use the home button to escape out of whatever I was doing. Then yesterday, both the back and home buttons failed to work. The search button is still functioning but the phone isn't really usable as the only way to exit an app is to turn the phone off.
    I did a power cycle, a hard reset, and then I returned the phone to factory settings, which put it in a "gears" situation for about 6 hours until I finally got it to boot up again. That didn't fix the button issue.
    Nokia says, since I had the screen locally replaced several months ago,  the phone is no longer under warranty. They wil not repair it at their service center in Texas and my only recourse is to send it to Palco.
    I spoke to Palco and they are unable to give me any information as to whether the phone is repairable. They just want me to spend money to send it to Alabama, give then $15 + shipping to diagnose it - they say it will take 5 - 10 days just to diagnose the problem. I can't be without a phone for 2 weeks if I don't even know if it can be repaired. I'm angry that the only authorized repair center in the U.S. is in Alabama and they have no techs you can speak to on the phone. It's really the worst customer service I've ever seen.
    Has anybody else ever experienced this issue? Were you able to get your phone repaired? I am going to see the guy that replaced the screen for me, but when I spoke to him on the phone he thought it was odd that 1 of the buttons still worked and wasn't at all convinced that he could fix it. He's never seen this problem before.
    Thanks for any guidance,
    HB

  • Upgrading APEX from 3.2 to 4.0 images and buttons not displaying correctly

    Database 11.2.0.1
    APEX: 3.2.1
    Attemping to upgrade APEX from 3.2 to 4.0. The installation script runs fine and updates the database successfully. I run the .sql to import the images and it ran successfully however when I attempt to access the APEX home page, the images are not loaded and the buttons don't do anything. I did some research through google but did not come to anything that resolved my issue. Does anyone have any ideas?
    Thanks for your time...

    If you are using mod_plsql, you need to run @apxldimg.sql script with SYS user file present with Apex installation. Also provide the location of your apex folder as parameter to this script.
    Habib

  • PayPal donation button not displaying correctly in FireFox

    I added a PayPal donation button, but it only displays correctly in Explorer - not in FireFox.  The site is:  www.washoe.k12.nv.us/mtrose
    <div id="content"><!-- InstanceBeginEditable name="content" -->
            <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_donations">
    <input type="hidden" name="business" value="[email protected]">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="item_name" value="Mount Rose Elementary School">
    <input type="hidden" name="no_note" value="0">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest">
    <input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
            <h1>Two-Way Immersion</h1>
            <p>The goal of our program is to help young s tudents become fluent in Engish and Spanish by the end of <br>
            elementary school.        </p>
            <p>Our program began in 2008-2009 with one kindergarten class and will expand one grade each year as the students move through the grades for a total of seven classes.</p>
            <p>The program is voluntary and there is a waiting list.</p>
            <p>The initiation of the program is designed to serve the students already zoned for our school and does not involve busing students or change Mount Rose's current zoning.</p>
            <p>The program also does not involve the addition of portables to our school at this time.</p>
            <h2>Mount Rose Centennial Celebration!</h2>
            <p><a href="Mount_Rose_Centennial.pdf">Mt. Rose Centennial Celebration</a> - An Old Time Picnic and Reunion of Mt. Rose Elementary School Friends Past and Present. Join us on October 2, 2011 from Noon to 4 PM for A Celebration to Commemorate the Centennial of Mt. Rose Elementary School One Hundred Years of Educating Reno's Downtown and Old Southwest Neighborhood Young!</p>
            <p>Commemorative T-shirts avialable $8 / For more information click <a href="centenial.pdf" target="_blank">HERE.</a></p>
            <p>For more information contact Jenny Brekhus 544-1694 or [email protected]</p>
            <p><img src="images/tshirt.jpg" width="403" height="253" alt="tshirt photo"></p>
            <h2> </h2>
        <!-- InstanceEndEditable --></div>
        <div id="rightside" class="brd-thin-white-top"><!-- InstanceBeginEditable name="right-top" -->
            <h2>Early Release Days!</h2>
            <p> Every Wednesday during the 2010-2011 school year, school will be released at 2:30 for teacher professional learning communities. This is a district wide change and will replace most early release days.</p>
            <p>Please remember to make arrangements for you child on Wednesdays!</p>
        <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="right-bottom" -->
            <h2><a href="https://campus.washoe.k12.nv.us/campus/portal/washoe.jsp"><img src="images/infinite_campus.jpg" width="142" height="102" alt="infinite campus portal"></a></h2>
            <p><a href="http://www.washoe.k12.nv.us/district/departments/transportation/bus-rules"><img src="images/bus_rules.gif" width="120" height="90" alt="bus rules"></a></p>
            <p><a href="http://www.washoe.k12.nv.us/district/departments/transportation/elink"><img src="images/bus_schedules.gif" width="202" height="87" alt="bus schedules"></a></p>
            <p><a href="http://www.washoe.k12.nv.us/espanol"><img src="images/spanish.gif" width="200" height="70" alt="wcsd spanish site"></a></p>
            <p><img src="images/wcsd.jpg" width="99" height="143" alt="wcsd logo"></p>
            <!-- InstanceEndEditable --></div>
        <div id="footer" class="brd-thin-white-top">
            <p class="footer-text">&copy; 2010 |<a href="mailto:[email protected]" target="_blank">Webmaster</a></p>
        </div>
    </div>
    </body>
    <!-- InstanceEnd --></html>

    Appears OK in Firefox... is it not where you want it?

  • Hover menu buttons not displaying correctly in Firefox

    Hello,
    I have a small problem with firefox. It does not seem to
    display the images correctly. In firefox the buttons are pushed
    down and you can only see part of the image. In IE6 and IE7 it is
    displayed fine.
    here is the URL so you can take a look at it:
    Page
    Does anyone know what the problem might be?

    Just drop a zoom:100% style on the link, and IE will get it
    right.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "TC2112" <[email protected]> wrote in
    message
    news:fh2nt4$4u8$[email protected]..
    > Hello,
    >
    > The problem is with IE, not Firefox.
    > The content of your menu link tags is a clear gif image
    that is the same
    > height as the background images applied to the link tag
    that change on
    > mouseover.
    > Even though it looks like you want it to in IE, IE is
    actually rendering
    > your
    > code incorrectly.
    > Firefox is rendering your code exactly as it should.
    >
    > Your background images are applied by CSS to the link,
    not the image
    > within.
    > In standards compliant browsers like Firefox, the height
    of link
    > attributes
    > such as background and border are determined by the font
    size or line
    > height
    > that applies to that link, even if there is no text in
    the link.
    > As a test, you can add font-size:38px (the height of
    your background
    > images)
    > to "table.menu" in your CSS and you'll see your entire
    link background
    > images
    > in FF.
    > IE incorrectly streches the link background to the
    height of the image
    > within
    > within the link.
    > IE does the same thing to borders if they are applied to
    just the "a" tag
    > and
    > not to "a img" in the CSS.
    >
    > A quick fix:
    >
    > table.menu { width:186px; margin-top:6px;
    > line-height: 38px; }
    >
    > A better fix and some great information:
    >
    >
    >
    >
    http://projectseven.com/tutorials/css/uberlinks/index.htm
    >
    > and:
    >
    >
    http://css.maxdesign.com.au/listamatic/
    >
    > Hope that helps,
    >
    > Take care,
    > Tim
    >

  • Table header sort buttons not displaying correctly.

    HI All,
    I'm having a problem with data table headers that seems to have appeared out of nowhere but is probably something simple I'm overlooking. To be sure it wasn't something deep in my app, I've created a simple project and recreated the problem.
    I created a simple web project and dropped a table onto the main page. I then bound the table to a full select of a myqsql table and then compiled. Simple enough, everything looks okay, until I opened the page in my browser.
    The table displays without borders and the sort buttons in the headings are not displayed but described such as this example
    " Button to sort column Date as the primary sort column."
    Any ideas?
    I'm not sure if this is a Creator error/setting or something else but I thought I'd start with Creator.
    Thanks
    Barry

    Some additional info
    The sort "buttons" have been replaced by links, that don't do anything. I even enabled all the multiple-select, pagination, etc features for the table and rather than be displayed as buttons, links have appeared for these functions as well.
    Thanks

  • BC Add To Cart Button Not Displaying Correctly

    I have been told by BC Tech support that Muse is causing the BC Add To Cart Button to have issues when exporting my site live. Here are two pages, one created in Muse where the button does not work correctly & one not created in muse where the same button information does work correctly.
    1.) Doesn't Work: Custom Made Outdoor Logo Mat - Customized Aqua Flow Entry Mats
    2.) Works: bctest
    Any ideas on how to get that working?
    The page which doesn't work was designed in Muse & I added the module code: {module_product,201955,6549130}    via the Insert HTML function in Muse. Apparently things get jumbled up on export or something to that effect.
    Thanks
    even on a page created from my side with no content whatsoever other than the Buy Button Code still will not work: Test01
    & interestingly, a page created in Dreamweaver with the same module code works correctly. Test 02

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • Header and Footer in not displaying correctly on each page in Adobe Forms

    Hi experts,
       I need your little help on Adobe Form.  I have develop a customer account statement and facing problem.
         In header and footer part I have to display customer address. It is ok if data is of one page. But when data is overflowing, customer address is showing only at first page in header, and not displaying address neither in header nor in footer(footer section will print on last page, it may be either first page or third page ) on other pages. (Address is table type data )
           Header and footer Section address has been designed on Master Page.
    Please help me to resolve these two problems as soon as possible.
    Regards
    Piyush

    I found this post which I hope helps:
    This can be done by bit of tweaking using JavaScript. 
    Actually the problem was, the header was printing continuously in subsequent pages and once the header data was over the rest of the pages contained blank header. But we need have to print same header for each group of items till that group of items finish in the specific page. And for new group of items different header will be filled and so on.
    So to overcome this issue, create the item table in such a way that the header data is also included in the item table for each group of items. In the layout, select your header field and the event READY LAYOUT and write the below JavaScript code. This event is called for each page for that header field, so you can directly map the item table value and put it in your header field.
    // Get the current page
    var currpage = xfa.layout.page(this);
    // variable to store number of fields in that page.
    var fields = 0;      
    // Get the number of fields
            fields = xfa.layout.pageContent(currpage-1, "field", 0);
    // Loop on each field on the page
            for ( i=0; i<= fields.length-1; i++ )
    // Check if the field is in the item table column (it will be actually header data column in your item table)
                if ( fields.item(i).name == "TL" ) 
    // Fetch that value and store in your header field.
                           this.rawValue = fields.item(i).rawValue;

  • Perssonas not being displays - Themes are but top of window not colour and firefox button not shown correctly

    I have installed the personnas plus add on and have tried to select several different personnas (e.g. Earth from space etc.) but none of them appear to be displayed. The window remains its default light blue.
    I am not aware that i have installed anything else which could have affected this situation.
    When attempting to apply a full theme the very top bar of the window (with minimize, exit etc.) is also not coloured as it should be - see the theme FT Deep Dark 5.6 for example. And the firefox button has an orange 'fuzzy' ' glitchy' border around it still.
    Cheers if anyone knows anyway around this problem :>

    hello Kirie_kore, it is a known issue that light-weight themes are currently not shown when firefox is set to ''never remember history'' (a.k.a. always run in private browsing mode) in firefox/tools > options > privacy. this will be corrected in the upcoming firefox release.

Maybe you are looking for