Safari problem viewing Frontpage tables

I teach a course in which students create webpages via FrontPage. Some of the pages use tables, in particular, the school's homework page. The text placed in the table can be viewed in IE and Netscape but the text does not show up when viewing the page in Safari. The table displays but not the text. What have we done wrong? Is there code that we can place in the file to correct this problem?

Solved from another site

Similar Messages

  • Safari problems viewing javascript & more

    I am a PC user and need help configuring Safari to read our web site correctly. (Hopefully we don't have to rewrite the site).
    Safari doesn't read the javascript correctly and doesnt' respond to clicks on menu choices. I have similar problems with Firefox.
    The table sizes in frame pages are too large and incorrectly formated, also.
    PC   Windows XP   <br<br>
    <span

    This usually indicates a syntax error or a meaningless javascript statement - referencing a null object or something perhaps.
    Does this message appear the instant you press the menu and repeats every time you press it?
    If so you probably need someone to look at the javascript. This is likely, but not guaranteed, to be your problem. Either way there are issues with your javascript as you suspected and it isn't "clean". I would also recommend running your site through a html/css validator program. There are some online tools that check your page via the web but I have never used them personally (I don't know if you can get PC programs for this).
    You may have a can of worms here or it could be an easy fix. If a total rewrite will cost loads I'd get someone to spend an hour poking with it before spending big money.
    G5 Tower 1.8   Mac OS X (10.3.9)  

  • Embedded videos from Youtube in firefox are black with sound. In Safari, they view just fine. What is the problem?

    I created a Google site at the office and put two videos from youtube in the site. I did this using an earlier version of Firefox and they worked just fine.
    Tonight I am using Firefox 9.01 and the two videos are black (no video) but have audio.
    They are fine if I open Safari and view.
    What could be the problem?

    Try to disable the hardware acceleration in the Flash Player.
    See:
    * https://support.mozilla.org/kb/Cannot+view+full+screen+Flash+videos
    * http://www.youtube.com/swf_test.html (right-click the player: Settings)
    Flash "Display settings" window:
    * http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html

  • Problem with maintain table views SM30 Transaction

    Hello All,
    i have a problem with the table maintenance view SM30, it doesn't permit me to modify the rows in the table.
    we have added a field into the table and when i tried to change the table view from menu: Utilities ==> table maintenance generator==> change the system propose me a message that the screen 0001 will be deleted and recreated...but the system has deleted the screen and doesn't recreate it...in somewehere on internet we find that we should use the transaction SE55 menu:
    Environment==> modification ==> Maintenance screen ==> button Layout which open the tool Screen Painter and from that we have created our screen with 4 fields of our table...our result that the screen is created and i can see it from the SM30 transaction but i can't insert rows in the table...when i try to go to maintain table: menu: Utilities ==> Table maintenance generator to try if i can modify something the system give me a message: "set the compare flag dialog ZIV_DP_PLCHAR_LA"
    the ZIV_DP_PLCHAR_LA is the name of my table...
    can you give me some advices please how should i do to fix this problem to insert rows in table throughout the transaction
    SM30 "maintain table views: initial screen"
    if i want to delete the screen from the SE55 transaction to recreate it newly what should i do to take care about some options
    to have a new screen?
    thanks for all
    Bilal

    Hi
    First delete the old table maintainence generator.
    Now Recreate the screen and your table is good to go..
    These error messages come when we add new fields and different version of the table maintainence generator in database.

  • We are having some problems viewing wide format drawings in safari on the ipad - The images view fine on the computer... Any ideas?

    We are having some problems viewing wide format drawings in safari on the ipad - The images view fine on the computer... Any ideas?

    No, the site isn't Flash-based; it's a site I've visited on the phone dozens of times. This problem only started occurring a few days ago.
    I'm embarrassed to admit that the site is Popsugar.com, a celeb gossip site that I visit whenever I'm bored.

  • Selecting from a view when tables are in more than one schema problem

    I give up where am I missing it. Why is the ORA-01031 error being generated on the view u1.bv1. In testing even if I give object access to u3 I still get the same errors:
    SQL>
    SQL> drop user u1 cascade;
    drop user u1 cascade
    ERROR at line 1:
    ORA-01918: user 'U1' does not exist
    SQL> drop user u2 cascade;
    drop user u2 cascade
    ERROR at line 1:
    ORA-01918: user 'U2' does not exist
    SQL> drop user u3 cascade;
    drop user u3 cascade
    ERROR at line 1:
    ORA-01918: user 'U3' does not exist
    SQL> drop role aRole;
    drop role aRole
    ERROR at line 1:
    ORA-01919: role 'AROLE' does not exist
    SQL>
    SQL>
    SQL> select user from dual;
    USER
    SYS
    1 row selected.
    SQL>
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for Solaris: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    5 rows selected.
    SQL>
    SQL> create user u1 identified by u1 default tablespace users
    2 quota unlimited on users;
    User created.
    SQL>
    SQL> create user u2 identified by u2 default tablespace users
    2 quota unlimited on users;
    User created.
    SQL>
    SQL> create role aRole;
    Role created.
    SQL>
    SQL> create user u3 identified by u3 default tablespace users;
    User created.
    SQL>
    SQL> grant aRole to u3;
    Grant succeeded.
    SQL>
    SQL> alter user u3 default role all;
    User altered.
    SQL>
    SQL> grant create session to u3;
    Grant succeeded.
    SQL>
    SQL> create table u1.t1(c1 number);
    Table created.
    SQL>
    SQL> create table u2.t1(c1 number);
    Table created.
    SQL>
    SQL> grant select on u2.t1 to u1;
    Grant succeeded.
    SQL>
    SQL> create or replace view u1.bv1 as
    2 select u1.t1.c1 as c1 ,u2.t1.c1 as c2
    3 from u1.t1, u2.t1 where u1.t1.c1 = u2.t1.c1;
    View created.
    SQL>
    SQL> grant select on u1.bv1 to aRole;
    Grant succeeded.
    SQL>
    SQL> create or replace view u1.gv1 as select * from u1.t1;
    View created.
    SQL>
    SQL> grant select on u1.gv1 to aRole;
    Grant succeeded.
    SQL>
    SQL> connect u3/u3
    Connected.
    SQL>
    SQL> select * from u1.bv1;
    select * from u1.bv1
    ERROR at line 1:
    ORA-01031: insufficient privileges
    SQL>
    SQL> select * from u1.gv1;
    no rows selected
    SQL>
    SQL> spool off

    User u1 cannot do a grant on a view to other user if the view uses tables from other schemas unless you do a "with grant option" grant.
    You need to do the following to make it work:
    SQL> grant select on u2.t1 to u1 with grant option;
    Grant succeeded.
    SQL>

  • Index not used on view when table stats exist

    Hello,
    I would be grateful if someone comes with ideas on the following problem I'm currently facing.
    I have a table with XMLTYPE data type column:
    sql-->desc ACFBNK_STMT008
    RECID     NOT NULL     VARCHAR2(200)
    XMLRECORD XMLTYPE
    I have a view V_ACFBNK_STMT008 on that table, in which the view columns are defined as extracted tags values from the XMLTYPE field, e.g. for the view field N_BOOKING_DATE:
    numcast(extractValue(xmlrecord,'/row/c25')) "N_BOOKING_DATE"
    (note: numcast is just a simple function that returns TO_NUMBER of its input argument)
    I have also a function-based index on this field of the table:
    CREATE INDEX train4.NIX_ACFBNK_STMT008_C25
    ON train4.ACFBNK_STMT008("TRAIN4"."NUMCAST"(extractValue(xmlrecord,'/row/c25')))
    And so, I'm executing on the view the following SQL statement:
    SELECT RECID FROM V_ACFBNK_STMT008 WHERE (N_BOOKING_DATE > TO_NUMBER('20070725'));
    Now, the problem comes: when statistics exist on the view base table (that is ACFBNK_STMT008) then the above statement is not using the index and is making a "table access full". When I delete the statistics for the table then the SQL runs fast with an "index range scan".
    Which is further strange - when I change the ">" operand with a "=" the SQL statement correctly captures the index regardless of whether or not statistics exist.
    I've tried to manually rewrite the SQL and include the "numcast" function in it:
    SELECT RECID FROM TRAIN4.V_ACFBNK_STMT008 WHERE ( N_BOOKING_DATE>train4.numcast(TO_NUMBER( '20010725' ) ));
    And in this way the index is used OK even with statistics existing!
    But regretfully I don't have a way to change the application and the SQL, so the only things I can change is the view and/or the index.
    Thank you in advance,
    Evgeni
    P.S.
    I've tried gathering statistics in both the following ways but still the problem persists:
    sql-->analyze table train4.ACFBNK_STMT008 compute statistics;
    sql-->exec dbms_stats.gather_table_stats(ownname=>'TRAIN4', tabname=>'ACFBNK_STMT008', CASCADE=>TRUE, partname=>NULL);

    Oh, and I forgot to mention: I cannot change the view definition as well (for example, to remove the "numcast"), since every now and then the application would recreate it automatically with the same code. :(

  • Problem viewing Japanese characters in Excel sent via Email attachment

    Hi All
    I am using FM '''SO_DOCUMENT_SEND_API1'' to send out an e-mail attachment (Excel file). I am able to receive the Excel file successfully. However I am not able to display the Japanese characters properly in my Excel file.
    I tried to display some Japanese characters in my e-mail contents and I have no problem viewing these characters in my e-mail (I am using MS Outlook 2003). These statements becomes something illegible when I transfer it over to Excel as an attachment. In my Internal Table, these characters are displayed correctly as well.
    Anyone has any advice to solve this issue?
    Thanks for your replies.

    Hi Divya,
    refer to the link below:
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    The code in this demonstrates how to send an email to an external email addresswhere the data is stored within a .xls attachment.
    Hope this helps.
    Reward if helpful.
    Regards,
    Sipra

  • Problem with Pivot Table with Graph: Line Bar Combo

    Hello people!
    I have a problem with pivot table and line bar combo (all in the same view (pivot table))
    I have some measures and one dimension in my report.
    --------------measure1---measure2---measure3
    Dim A.1
    Dim A.2
    Dim A.3
    If I choose my graph line bar combo automatically choose "line" measure 3 (last measure in "Show Controls"). How can I do if I want my measure1 for line and I don't want modify my pivot table?
    Thank you very much!

    Ok, I'll explain my problem again. In my pivot table I add graph vision and I want in the same view (Pivot table). My graph is "Line Bar Combo" and I don't know how but the last of my measures belongs to right AXIS, if I change order of my measures I can see in my graph the measure that I want in my right axis BUT also it changes the order of my pivot table.
    This is my problem. I think that I can do that with different views but I lose my selector view to view graphic and my pivot table at the same time.

  • Problem in MARA table for the field PSTAT

    Dear all,
    I am facing a problem with mara table , for a material it is showing "C" Classification status in MARA table in field PSTAT
    But if im going to Transaction MM03 with the same material im not able to find any Classification view there(mm03).
    Please help me why is this happening and what is the possible solution for this .
    Many Thanks!!!
    rewards will be given....

    Hi,
    In  relation to the issue, there are a number of reasons why the                              
    classification view may not be displaying in MM02/MM03:                                                                               
    1. OMS2 customising settings for material type                                               
    2. OMT3 customising settings for the screen sequence                                         
    3. Authorisation object M_MATE_STA                                                                               
    If these settings are correct, kindly refer to the note 113966.                          
    If there are inconsistencies in the material status in MARA and MARC                          
    then report ZRMMMSTAT outlined in this note should resolve the issue.                         
    Best regards
    Erika

  • Problems viewing CNN videos

    Is it only me? With both Firefox and Safari, whenever I view a video on the CNN.com website, it is terrible. It just shutters and the audio is shaky. Even if I wait for the whole video to download before pressing play, I get the same problem. This has been happening for a long time, with many different versions of Firefox, starting in 2.x and still in 3.x. I never have any problems viewing YouTube video or any QuickTime videos, it is ONLY on the CNN.com website. I have contacted them several times (contact us) and complained, but I have never received a reply.
    I just want to make sure it isn't my machine. I have a pretty good system with plenty of RAM, etc.
    Thanks.

    Hello,
    I've never had an problems viewing CNN video/audio on Safari 3.1.2 (Tiger 10.4.11).
    In Safari, from the Menu Bar, select Help/Installed Plug-Ins and make sure you have the following plugin: Shockwave Flash 9.0 r151 — from file “Flash Player.plugin”. You can do a quick search of plugins by pressing Command + F in that plug in window and type in Flash in the search field. If it's there, it will be highlighed.
    If not, go here and download the Safari Flash plugin: http://www.adobe.com/shockwave/download/alternates/
    If you already have the Flash plugin, perhaps you need to do some maintenance on your Mac? If you don't have a disk utility to clean out caches, run routine maintenance and cleaning scripts... get Onyx here: http://www.titanium.free.fr/pgs/english.html It's free, easy to download and install and use.
    Also, check your available drive space as BDAqua suggested. Right or control click your MacintoshHD icon, then click: Get Info In the Get Info click the black arrow next to General so it faces down. You will see: Capacity and Available. Make sure your Mac has a minimum of 10% free disk space, 15% is better. Not enough disk space and video/audio, applications.. will crash/free... in general, erratic behavior.
    Carolyn :- )
    Carolyn

  • Problem viewing videos feeds

    I'm having a problem viewing video feeds on sites like Youtube and Veoh instead of a video showing I get a icon that looks like a lego with question marks on them now how can i correct this?

    That means you do not have the proper plugin installed. You need the Flash plugin.
    http://www.apple.com/safari/download/plugins.html

  • HELP! Problem viewing Youtube videos.

    Hello,
    I am having problems viewing Youtube videos. Everything was great until the other day. I have not changed anything on my computer to create this problem.
    Diagnosis:
    when viewing videos straight from youtube.com with Safari, it loads and starts to play the video & audio. after the first second the visual video disappears and the audio keeps playing. I can scroll throughout the video, but no picture.
    I do not understand, I have updated everything and still same outcome. It was working the other day fine and then boom, no video. WHAT SHOULD I DO?
    Thank you for you help,
    B

    Sounds like a problem with Flash. I'd recommend visiting Adobe's web site and updating to the most current version for OS X.
    Roger

  • Strange problem viewing web sites.

    Hi everybody,
    I am having a strange problem viewing web sites. There are certain web sites that when viewed on my mac certain content that shows up on other computers (mac and pc) does not seem to show up on my mac. At first I thought it was a safari problem and maybe I installed a filter or some thing but regardless what browser I use, the content is not there. For instance: Spinepodium.com one of the sites I am building - I just recently added Google Adsense to the page. When I view the page on other computers (mac and pc) the ads show up just fine. However on my mac it is as if the code is just not there. I have noticed similar things on other pages as well.
    Any help would be great.

    Video plays for me on the site you posted.
    As I suggested, install the Flip4Mac plug-in. After installing, open the preference file via System Preferences>Flip4Mac. On the Plug-in panel, 1st and 3rd boxes are checked. On the Movies panel, 1st box is checked.
    Just in case, go to the Utilities folder>Disk Utility and "repair permissions" via the First Aid panel (click on your HD on the left of the window, "repair permissions" will appear on the right. Restart the computer. Try the video in Safari.
    Post back

  • HAVING PROBLEMS VIEWING VIDEOS...

    I'M HAVING PROBLEMS VIEWING VIDEOS...THE BROWSER I USE IS SAFARI...THE MESSAGE I GET WHEN TRYING TO VIEW THE VIDEOS IS "HAS CONTENT OF MIME-TYPE "APPLICATION/XMPLAYER2" BUT YOU DON'T HAVE A PLUGIN INSTALLED FOR THIS MIMTYPE A PLUGIN SHOULD BE AVAILABLE ON THIS PAGE" THEN IT DIRECTS ME TO THE MICROSOFT WEBSITE TO DOWNLOAD MICROSOFT MEDIA PLAYER 9....???? WHAT SHOULD I DO?....WE TRY TO DOWNLOAD...AFTER DOWNLOAD IT STILL KEEPS DOING THE SAME THING OVER...I'M NOT REALLY SURE WHAT A PLUGIN IS OR HOW I CAN GET ONE...COULD YOU HELP ME OUT?...THANK YOU...

    Try posting in the QuickTime for Mac forum. You'll be more likely to get help there than you will here in the QuickTime for Windows forum.
    Good luck.
    Forum Tip: It is generally considered inappropriate behavior to type all in uppercase letters in Internet discussions, as text that is typed all in uppercase is by convention considered to be shouting. Uppercase is also more difficult to read, so please use all uppercase sparingly and only when you really mean to shout, which we hope you won’t need to do here .

Maybe you are looking for