Navigation & Photo Page not displaying within some browsers

Hello,
I am using iWeb '08 and am having great difficulties trying to get my site cross browser compatible. The site is working perfectly on the Mac in Firefox 2 & Safari but not Firefox 3. It is also not displaying correctly in Firefox 2.0.0.13 and IE7 on my WinXP machine. Unfortunately the error is not just a cosmetic issue. The Main Navigation is not displaying on any page and only shows a bullet point where it is meant to be. The other error occurs in the Photo Template and the photos are not displaying. I am using a "Version 1 template" and did a test with a "version 2" template that provided the same errors.
Has anyone else had these problems???
The site is located at:
http://web.mac.com/maxkit/Kai/
Photo Page:
http://web.mac.com/maxkit/Kai/CurrentPictures/Pages/Snowy_AprilDay.html
The test site is located at:
http://web.mac.com/maxkit/Site/
Thanks
Max

You have applied a height of "auto"to your menubar container, which gives it no height at all in some browsers. If you have a clue what height you would like to display for your menubar, give it, instead of:
    <div style="height: auto;" id="p7PMM_1" class="p7PMMh04">
Better yet, leave it in the CSS file, where you will find it when you go looking for it. You already assign a height there:
.p7PMMh04 {
    width: auto;
    height: 20px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    background-image: url(http://home.roadrunner.com/~jgigandet/trinity/img/new_bk.gif);
    background-repeat: repeat-x;
    background-color: #000;
    text-align: left;
    line-height: normal;
Because your inline style of height:auto; has more proximity (is closer) to the element being styled, it overrides the style in the stylesheet and applies the height: auto; instead of allowing the height: 20px;
Beth

Similar Messages

  • Background nav image not displaying in some browsers...

    Hi,
       I'm in the process of building a website template - still ironing out some bugs, but just discovered that the bacground image in my navigation bar isn't displaying on some browsers (including some versions of IE). It works in IE8 where my primary testing takes place (on both my local drive and from the temporary "live" server, but in most other browsers, doesn't show up...
    below is a link to my test page:
    http://home.roadrunner.com/~jgigandet/trinity/
    and here is the css with the applicable code in red:
    /*Menu Outer Wrapper*/
    .p7PMMh04 {
    width: auto;
    height: 20px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    background-image: url(img/new_bk.gif);
    background-repeat: repeat-x;
    background-color: #000;
    text-align: left;
    line-height: normal;
    /*Hide Sub-Menu in Design View
    Compensate for LI padding on Sliding Doors themes*/
    .p7PMMh04 ul div {
    display: none;
    TOP LEVEL MENU
    .p7PMMh04 ul {
    margin: 0;
    padding: 0;
    .p7PMMh04 li {
    list-style-type: none;
    float: left;
    width: 120px;
    /* Hide from IE5 Mac \*/
    .p7PMMh04 li {
    width: auto;
    /*Top Level Links*/
    .p7PMMh04 a {
    display: block;
    text-decoration: none;
    padding: 2px 14px 3px 14px !important;
    color: #ffc42a !important;
    /*border-right: 1px solid #8184e6;  */
    text-align: left;
    /*Link hover when no drop down is present */
    .p7PMMh04 a:hover {
    color: #df8f04 !important;
    /*background-color: #DFDFDF;*/
    Syntax for special classes programatically assigned to first and last links and also LIs
    See user guide for more information
    .p7PMMh04 ul a.pmmfirst {
    border-left: 1px solid #df8f04;
    .p7PMMh04 ul ul a.pmmfirst {
    border-left: 0;
    .p7PMMh04 ul a.pmmlast {
    .p7PMMh04 ul li.pmmfirst {
    .p7PMMh04 ul li.pmmlast {
    /*First Sub Level*/
    .p7PMMh04 ul ul {
    z-index: 10000;
    background-color: #333;
    width: 150px;
    background-image: url(img/pmm_carbon_subs.jpg);
    background-repeat: repeat-x;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    .p7PMMh04 ul ul li {
    float: none;
    background-color: #000;
    background-image: none;
    .p7PMMh04 ul ul a {
    padding: 4px 12px !important;
    color: #ffc42a !important;
    border-right: 0;
    text-align: left;
    overflow: hidden;
    /* rollover on 1st level rollovers  */
    .p7PMMh04 ul ul a:hover {
    background-color: #333; !important; 
    color: #df8f04 !important;
    /*Third Level (Flyouts in horizontal menu)*/
    .p7PMMh04 ul ul ul {
    border-top: 1px solid #df8f04;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    border-left: 1px solid #df8f04;
    SPECIAL IMAGE-BASED RULES
    .p7PMMh04 img {
    border: 0;
    .p7PMMh04 .p7PMM_img {
    padding: 0px;
    border: 0;
    background-image: none;
    background-color: transparent;
    TRIGGERS and CUURENT MARK RULES
    The Closed state relates to trigger items when their child menus are not showing
    The Open state relates to trigger items when their child menus are showing
    Selectors appended with _left Automatically change arrow position and orientation
    if sub levels are set to fly out to the left
    /*Sub Level*/
    .p7PMMh04 ul a.trig_closed, .p7PMMh04 ul a.trig_closed_left {
    background-image: url(img/pmm_south_medium.png);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul a.trig_closed_up {
    background-image: url(img/pmm_north_medium.gif);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul a.trig_open, .p7PMMh04 ul a.trig_open_up {
    color: #000 !important;
    background-color: #DFDFDF !important;   /* This is background color of main dropdown rollover */
    .p7PMMh04 ul ul a.trig_closed {
    background-image: url(img/pmm_east_dark.png);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul ul a.trig_closed_left {
    background-image: url(img/pmm_west_dark.gif);
    background-repeat: no-repeat;
    background-position: left center;
    .p7PMMh04 ul ul a.trig_open {
    color: #FFF !important;
    background-color: #424242 !important;
    /*The Current Marker (You are here) links*/
    .p7PMMh04 .current_mark {
    font-weight: bold;
    color: #60c3d1 !important;
    .p7PMMh04 ul ul .current_mark {
    color: #FFF !important;
    Utility Rule used for Clearing floats in Horizontal Menus
    .p7pmmclearfloat {
    clear: both;
    height: 0;
    line-height: 0;
    font-size: 0;
    Thanks in advance for any advice,
    Jesse

    You have applied a height of "auto"to your menubar container, which gives it no height at all in some browsers. If you have a clue what height you would like to display for your menubar, give it, instead of:
        <div style="height: auto;" id="p7PMM_1" class="p7PMMh04">
    Better yet, leave it in the CSS file, where you will find it when you go looking for it. You already assign a height there:
    .p7PMMh04 {
        width: auto;
        height: 20px;
        margin: 0 auto;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: bold;
        background-image: url(http://home.roadrunner.com/~jgigandet/trinity/img/new_bk.gif);
        background-repeat: repeat-x;
        background-color: #000;
        text-align: left;
        line-height: normal;
    Because your inline style of height:auto; has more proximity (is closer) to the element being styled, it overrides the style in the stylesheet and applies the height: auto; instead of allowing the height: 20px;
    Beth

  • Photo pages not appearing in IE browsers

    Hi,
    Now that I've worked out image quality issues in iweb 08, currently testing my published site (temporarily in protected directory test mode). Through Safari Develop Tool I've checked various browsers and all browsers display my site correctly except IE browsers. In all IE browsers I'm noticing the photo pages are not displaying my image thumbnails except captions. Hovering and clicking the mouse over where the image should be visible brings up the slideshow and images do appear. The photo album pages are less then 12 pictures per album; images have been optimized. So this is not the problem regarding the thumbnail pages. So what could it be? Javascript issues?
    Frustrated because this one issue is preventing me from displaying my site live! Of course, I could just forget about PC users but I have products I want to sell and don't want to lose potential customers. One peculiar glitch on a website scares people away.
    Been searching all over the internet for answers but growing more confused. Although new to safari's develop tool and unfamiliarity with javascript fixes, curious if clicking on debugging javascript would be a remedy. If so, what would I need to do to fix the disappearing images? Or, should I just accept that iweb 08 and IE are incompatible and inform my visitors to use non-IE browsers such as Safari and FireFox? Such a letdown!
    Help most appreciative!
    Cheers, June

    I figured it out!!!
    Somewhere along the way, the following permission class got added to the pagedef's of two of the pages but not the others
    <permission permissionClass="oracle.webcenter.security.auth.HierarchicalResourcePermission"
                  target="serviceID=oracle.webcenter.page,scopeID=s8bba98ff_4cbb_40b8_beee_296c916a23ed,resourceID=/oracle/webcenter/portalapp/pages/*<page name>*.jspx"
                  xmlns="http://xmlns.oracle.com/adf/security">
        <privilege-map operation="create" privilege="create"/>
        <privilege-map operation="delete" privilege="delete"/>
        <privilege-map operation="edit" privilege="update"/>
        <privilege-map operation="personalize" privilege="personalize"/>
        <privilege-map operation="view" privilege="view"/>
      </permission>once i added the permission class to the other pages they showed up in the navigation model.

  • Some images not displaying in some browsers

    Hi,
    I'm creating a newsletter in Dreamweaver using the design view.
    The finished thing works perfectly in Internet Explorer but when I view it in Firefox or Safari certain images are not displaying. There's no red cross or sign at all of why they're missing. They do however show as attachments at the bottom of the email.
    The code appears to be fine and all the images were uploaded in the same way, so can't think why some won't appear while others will. The only thing the missing images have in common is that they're all left aligned so the text wraps around them.
    I've been trying to fix this for ages and tearing my hair out. Any help greatly appreciated!!
    Thanks.

    Um, I can't seem to find it on the server, which can't be a good sign ) - :
    Have no idea why it's not appearing where it should but if I can get a link to work I'll send it to you.
    Thanks for your help

  • Photo page not displaying photo albums

    I have a domain with Yahoo!, and I'm using .Mac to host the domain and iWeb to publish the content. My photos page isn't loading properly. When I go to the web.mac.com address, the photos page loads fine, and all the albums are visible. However, when I access the photos page from the hosted domain name, the page background and title load, but the albums are not visible.

    AJAX failed during requesting assets in streamloader, by looking at the source code I can see that streamloader is pointing back to your .mac site. It's a security issue, AJAX script can not request cross domain.
    Question: did you publish to your .mac? and then mount idisk and upload your .mac site to your baukol site?
    You can do one of these two:
    1) publish to a folder and upload it to you baukol site (duplication of the two sites).
    2) or forward baukol site to your .mac site (no duplication, only .mac).

  • Characters not displaying in some browsers

    This is another Unicode issue, but as far as I can tell I have all of the correct file transfer settings.
    In MS Internet Explorer 6 and also Firefox 3.6.3 (both Windows versions running on Win XP) some unicode characters fail to display. The math 'times' symbol fails on both. The Greek lower case letter phi fails on Explorer but is okay on Firefox. Both browsers correctly recognize that the text encoding is utf8.
    Everything displays just fine on the Mac version in both Firefox and Safari. So, I assume the files reached Server okay and that the server is working fine.
    If I was using any other web publishing software I could use html escape characters × and Greek letters, but there appears to be no way of doing this on iWeb. As a temporary fix I will change the times symbol to the letter 'x' but I'm not sure what I can do about the phi and any other odd characters that may crop up in the future.
    Any suggestions?

    It's possible your problem could caused by lack of proper fonts on the machines you are testing, especially if Firefox 3 does not show ×. In that case using html escapes would not help. You could test this by creating a test page with the escapes and seeing if they work.
    Could you provide the url of the page where this is happening so I can see what is going on?

  • Major Problem - some pages not displaying correctly

    All,
    I have a problem with some pages not displaying correctly i.e.
    SE80 navigation page
    F1 help
    I am using XP sp2 and we have the latest version of internet explorer 7 (which I cannot uninstall as it is company policy)
    SAP version is 6.4c.
    I am using SAP Gui 7.10 with the latest patch 710_7.
    This is making the system completely unusable for me.
    I have read a few forum posts mentioning that upgrading to the latest patch version will resolve this problem, but this clearly has not worked for me.
    Can someone please help,  how do I actually esculate this to SAP?
    <REMOVED BY MODERATOR>
    thanks
    Edited by: Alvaro Tejada Galindo on Apr 8, 2008 4:07 PM

    what kind of useless answer was that?  If you have no constructive comments to add please refrain.
    I am a SAP developer in ABAP and its related to SE80 which I used to use primarily for editing code (i now have to use se38).
    I often use F1 for hints on code etc to use and syntax so it does make it very difficult for me.  If there is a more appropriate forum for this please direct me, instead of posting in gibberish english.
    Max - I assume you have the same problem and it is also not resolved by the latest patch.  I wonder is there a way this can be esculated with SAP?
    Edited by: Steve Trillo on Apr 4, 2008 10:43 AM

  • 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

  • My Social Media Icon are not displaying within FireFox

    My Social Media Icon are not displaying within FireFox. And all other browser your able to view Icons - For some reason is now displaying in FireFox.
    Can someone help me with this issue? I have alot of clients that view our website using firefox browser.
    Domain Name: ForemostFitness.com

    Do you use any extensions that block ads? That occurs to me because the service you're using for social icons (addthis) has "ad" in its name and perhaps they are getting filtered that way.
    To determine whether an extension is a likely culprit, you could disable that one temporarily, or you could disable them all by testing the page in Firefox's Safe Mode. That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled ''(Flash and other plugins still run)''
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • My photos are not displaying after upgrade to iOS 7, My photos are not displaying after upgrade to iOS 7

    On our ipad 2, after upgrading to iOS 7, the photo album is completely screwed, and the saved photos are not displaying correctly. How do we get our photos Back?

    OK, tried the reset and it seems to have cleared up some problems; however, the picture problem remains.
    Maybe there is something further we could do in settings? My wife uses the iPad as her constant companion and likes to take screen shots (pictures) of recipes and such. She keeps them in albums. Before the update to iOS 7 they all displayed correctly regardless of physical machine orientation. Now, post update, when in landscape mode, which she uses 99.9% of the time, her pics do do fully display. By physically rotating the machine, they will appear correctly. We have noticed that there is a new "function" in edit pics for "aspect ratio."
    Should we be using this? If so, she'll have to edit a very large number of pics. So I'm wondering if we're missing some new setting. BTW- this display problem also occurs with pics taken with the camera as well.

  • Problem on PC: During import, I can locate the sources folder however the photo do not display. Was working fine.

    Problem on PC: During import, I can locate the sources folder however the photo do not display. Was working fine. All file types, Lightroom is no longer recognising the images to import, The panel that usually displays them remains empty.  Try using backup versions, removing software that could conflict , still no joy, has anyone had this problem?

    Did you follow this procedure?
    Our iTunes guru Terence Devlin advises the following:
    1. Quit iTunes
    2. Drag the iTunes folder from your internal hd - located in ~/Music folder - to your external hd. DO NOT delete the original one from your internal hd... yet!
    3. When the transfer is complete, press and hold the Option(alt) key and fire up iTunes.
    4. A "Choose iTunes Library" window will come up. Click on the "Choose Library" button.
    5. Navigate to where the iTunes folder is located in the external hd.
    6. Within the iTunes folder, select the iTunes Library file and click Choose...
    That's it. iTunes will now display all your playlists, songs, movies, podcasts etc. At this point, should you wish, you can delete the iTunes folder from the internal hd to free up space.
    More info:
    http://support.apple.com/kb/HT1751
    Or if you prefer a more complicated explanation:
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive

  • BBC One Highlights page not displaying content of its panes

    Why does the BBC One Highlights page not display the content of its panes?

    There seems to be something up with their javascript that produces slightly different image url's than on other browsers.
    Instead of something like this:
    http://ichef.bbci.co.uk/images/ic/336x189/legacy/episode/b03ggg2z.jpg 
    it's producing say
    http://ichef.bbci.co.uk/images/ic/336x0/legacy/episode/b03ggg2z.jpg 
    which doesn't exist.

  • 'Access is denied' error in ESS iViews & Page not displayed' thru. internet

    Hi,
      We are implementing <b>ESS(Webdynpro)/MSS(Java)</b>.
      We are in EP6 SP13.
      We want to put our portal on internet through SSL.
    I have installed SAP Webdispatcher and configured it to support SSL. SAP webdispatcher is installed on a DMZ machine(hostname: SAPROUTER).
    <i>webdispatcher ports:</i>
    http port: 80
    https port: 8443
    1) When i try to access the portal from the DMZ machine (where the webdispatcher is installed) using <b>https://saprouter.domainname.net:8443/irj/portal</b>, i am able to see all the iViews.. but, i am getting '<b>access is denied</b>' error(in the status bar) when i try to click on any link in ESS iViews (for ex: working time, Employee search).. when i try to double click i am getting javascript:void(0)
    2) When i try to access the portal through internet(<b>https://<ipaddress>:8443/irj/portal</b>), I get the logon page and after logging in... i am not able to see the ESS and Transaction iViews .. getting 'Page cannot be displayed' error.
    When i am able to see the iViews in the DMZ machine.. why are they not being displayed when i access through internet??
    Can any1 help me in this regard?? What am i missing ??
    Awaiting your reply.
    Regards,
    SK.

    It’s a hot topic I think,
    Where facing the exact same problems.
    When we logon ‘LOCAL’ to the Portal the iview works. (Not true the internet / DMZ)
    But when we logon true the webdispatcher we get the Portal Layout, so the dispatcher works.
    But the WEBdynpro Iview gives the error -> ‘Page not displayed'
    And when we edit the file “hosts” on the pc of the client browser and fill in the hostname of the SAP Portal the Iview works…..???
    There are no ports closed on the firewall, everything is allowed.
    Can anyone tell me of it’s necessary to edit the Web Dynpro Runtime Environment. Here are some settings for the WEBdispatcher but I can’t get it working.
    -     sap.webdispatcher.host           = Defines the host of a used Web Dispatcher
    -     sap.webdispatcher.port            = Defines the port of a used Web Dispatcher
    -     sap.webdispatcher.protocol      = Defines the protocol of a used Web Dispatcher
    See the link -> http://help.sap.com/saphelp_nw04s/helpdata/en/43/8a1a8ece230c8ce10000000a11466f/frameset.htm
    When I activate the trace on the webdispatcher
    (D:webdispsapwebdisp.exe pf=D:webdispsapwebdisp.pfl -t 2)
    In the Tracefile I can see that the webdispatcher resolves the SAP portal system. That’s was aleady confirmed by seeing the portal framework from the client. I think that the WEBdynpro’s have to be remote activated, or some addition settings in the webdispatcher.
    If somebody get an idée I really would like to know it.
    Best regards,
    Edwin

  • Pulisher CUCM web page not display

    Hello,
    Publisher cucm web page not displayed and DB not accessible IP phones working on Subscriber but I can't change any settings.Cisco Tomcat service not working and I can't restarting. (ver. 7.1.5)

    If you cannot change any config then it's more than just not being able to use a webpage, there must be some problem with the ccm/DB services on the PUB.
    SSH to the server and see if there are error messages, I'd suggest a whole reboot.
    HTH
    java
    If this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • Purchase Order Notes not displaying in some systems

    Hi All,
    Purchase Order Notes are not displayed in some systems. But the same notes are viewable from a different PC.
    This is the case of few of my end users.
    Please help.
    Thanks
    Vijay

    Hi All,
    The issue is resolved. It was because of updating the IE version from 6 to 7.
    We have degraded the IE version back to 6 and it all worked fine.
    Thanks
    Vijay

Maybe you are looking for

  • Avoid MathScipt Comments in EXE, Build & Run Problems - NI Please Fix these Bugs!

    Hello, After 4 days of intensive work, I have finally found the solution for two major MathScript Problems: 1) Mathscript Comments are included in your EXE File !!     - Yes, if you do not watch your steps, the EXE will include all your % Mathscript

  • Windows 7 UAC

    To get round the Vista UAC 'trust message' I codeSigned my application which worked fine but in windows 7 it now displays the 'Do you want to allow the following program to make changes to this computer?' message. Does anyone know how I can get rid o

  • Aperture will not open!

    I have had Aperture for only a few weeks, and I must say it is just an awful experience. I bought it because I felt like iPhoto was struggling to manage my ever expanding library of 30000+ photos. I thought that going Pro would help the situation. Wh

  • Dump --- Very Urgent

    I am running a proram in background mode. I got a dump showing the error as The termination occurred in the ABAP program "SAPLKKBL" in "GEN_FIELD_OUT2". The main program was "ZALVSTAR".                                                                 

  • Vista_x64 and BM39SP2 vista client = PROBLEM

    Vista_x64. Any body know - how to use BM39sp2 client for vista with this Vista_x64 ?? Serg