Embed src issue / Div moving

Alright, two problems here. My website is at
http://www.theepicenter.org/pagetemp.htm.
First:
I did a check on my code at validator.w3.org. It keeps
telling me that there are errors on Line 113 with the <embed>
element (this is the "destination finder" header which is made in
flash to keep the font the same), along with several other issues
that will probably resolve themselves when I fix this issue. I
followed W3's FAQ link of fixing flash in xhtml (the "Flash Satay:
Embedding Flash While Supporting Standard" article). This article
is great for movies, but does not work when using flash to make
text boxes. Any help here?
Second:
At the bottom of the page is the footer links and copyright.
In dreamweaver and IE, these will stay in place. But in Firefox and
Netscape, these two lines move down. I've had this issue before and
I fixed it somehow, and I cant remember how I did it. Any help here
would be appreciated too. Thanks!
Kris

Hi Kris,
> First:
> I did a check on my code at validator.w3.org. It keeps
telling me that there
> are errors on Line 113 with the <embed> element
(this is the "destination
> finder" header which is made in flash to keep the font
the same), along with
> several other issues that will probably resolve
themselves when I fix this
> issue. I followed W3's FAQ link of fixing flash in xhtml
(the "Flash Satay:
> Embedding Flash While Supporting Standard" article).
This article is great for
> movies, but does not work when using flash to make text
boxes. Any help here?
I can't help you there...
>
> Second:
> At the bottom of the page is the footer links and
copyright. In dreamweaver
> and IE, these will stay in place. But in Firefox and
Netscape, these two lines
> move down. I've had this issue before and I fixed it
somehow, and I cant
> remember how I did it. Any help here would be
appreciated too. Thanks!
Your real problem is that you use absolutely positioned divs.
Why not get yourself a good 2 col css template (lots of free
and good
stuff out there) and move your design to that instead of the
AP divs
layout you have now. While you're at it you could change your
menus to
styled list menus instead.
I'm sorry if it all sound like bad news... but AP divs just
suck for a
solid layout. (Try to resize your text size and resize your
screen to
800x600).
Very nice design :)
Kim
http://www.geekministry.com

Similar Messages

  • Video embed float issue!

    Embedded videos are floating in front of all other objects. I had them embedded in a slideshow widget, then I tried it outside of a widget, directly on the page... the same result! My lightbox menu objects are obscured by the video when opened. I have tried moving the video to back, and moving the lightbox widget to front, but no luck. I have tried youtube (even the old code), and also a facebook embed. In only firefox, half of the lighbox objects are obscured, and some are visible, but why? What can I do??? Here is the link:
    www.tightenupgirl.businesscatalyst.com

    Add wmode="transparent" to the embed tag (in addition to the wmode param in the object tag).
    <object width="560" height="315"><param name="movie" value="http://www.youtube.com/v/B6hzf_gbuj0?version=3&hl=en_US&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/B6hzf_gbuj0?version=3&hl=en_US&rel=0" type="application/x-shockwave-flash" width="560" height="315" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></object>

  • Issue in moving files from data fodler to processed folder in background

    Hi All,
    I am facing one issue in moving files from data fodler to processed folder in case of background execution.
    When i am executing the file in the foreground, i can move the file from Data folder to processed folder. I am using SXPG_COMMAND_EXECUTE FM to move the file from data folder to processed folder.  I can see the file in processed folder once the program is executed.
    But in case of executing the same program in background, it is giving me the error "Failed to move the file to processed folder" in the spool of SM37 and i can see the file still laying in data folder.
    I tried to check other programs which acesses the same folder as the above program, whether they are able to move. They are able to move the file to processed fodler successfully both in foreground and background mode.
    Please help me in resolving this issue.
    Thanks,
    Deepa

    Hi Sanu,
                    Please use teh following code to move the file from source to target folder.
    This is a code showing how to create and use COPY command of UNIX in ABAP
    PARAMETERS:
    Input file path
    p_input TYPE localfile,
    Processed file path
    p_proc TYPE localfile.
    Declare the Types to file data
    TYPES: BEGIN OF L_X_OUTPUT,
    sys(200), " Please note, there are asterisk before and after sys (i.e.sys)
    END OF L_X_OUTPUT.
    * Internal table to store file data
    DATA l_i_output TYPE STANDARD TABLE OF l_x_output WITH HEADER LINE.
    * Variable for the UNIX command
    DATA: l_v_unix_comm(255) TYPE c.
    Copy command of UNIX
    CONCATENATE 'mv' p_input p_proc
    INTO l_v_unix_comm SEPARATED BY space.
    For example the Copy command is stored as below
    cp u2018/data/interfaces/input/input_fileu2019 u2018/data/interfaces/processed/processed_fileu2019
    Examples of UNIX Command *u2022 mv filename1 filename2 --- moves a file (i.e. gives it a different name, or moves it into a *different directory (see below) *u2022 cp filename1 filename2 --- copies a file
    Execute the UNIX Copy command.
    This command will copy the file from input file path to the processed file path
    CALL 'SYSTEM' ID 'COMMAND' FIELD l_v_unix_comm
    ID 'TAB'
    FIELD l_i_output-sys.
    IF sy-subrc eq 0.
    write: 'File is copied successfully using UNIX command in ABAP'.
    ENDIF.

  • I am trying to use the embed tag - to embed an html page with in a page embed src="page.html" /

    <pre><nowiki><!DOCTYPE HTML>
    <html>
    <body>
    <embed src="page.html" />
    </body>
    </html></nowiki></pre>

    The <embed> tag works in Windows IE 9, and Opera, Now! But not in Firefox yet. Whats up with that? I guess we will see who is going to be left behind.

  • Embed src in Servlets

    Hello,
    I am confused on as to why I am only able to embed a source in my Servlet by referring to a remote file only. I have:
    out.println("<embed src=\"http://192.168.1.8:8081/alt1.svg\" width=\"1000\" height=\"1000\" type=\"image/svg+xml\">");and it would be great if it was like:
    //with a local file
    out.println("<embed src=\"c:\\alt1.svg\" width=\"1000\" height=\"1000\" type=\"image/svg+xml\">");Does anybody know why I am only able to get a remote file? How can I access a local file instead? Thank you.
    Victor.

    Hi,
    Okay, here's the situation:
    I have a set of files that are processed by my servlet. PrintWriter in my doGet() method appends data to common accumulator file. So, I am using FileWriter/FileReader to access and store my file locally.
    Now, I have created a user interface that when a user selects data(which is in SVG code) from a particular file, that data has to be drawn on a screen. So, you see that this data comes from files strored locally, okay so far?
    So, the problem is that this data is displayed using <embed src=http://....> way and when I try to access this file, it takes a **few attempts** to get the next file data. So, data is changed using FileWriter but is accessed using remote call. I think the problem is that there is some sort of latency or something like that involved between a change in a local file and that change being recieved through remote call. That's why I think if I access the file locally, this problem will be solved. I hope I made sense.
    Thank you,
    Victor.

  • Deprecated embed tag issues

    I have been using the embed tag to play media like:
    embed src="audio/song1.mp3" width="200" height="18"     ......  /embed
    It seems that it has become deprecated in some uses
    I'm looking for some kind of universal tag to play mp3's or .mov files
    Any idea what replaces it for basic use?

    so what's the best bet overall for maximum compatibility ?
    Use both <object> and <embed> tags.  Embed tag was never valid W3C code.  Nevertheless, some browsers require it.
    http://www.mediacollege.com/video/format/quicktime/streaming/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • embed src="sound/52211.wma" width="0" height="0" / Will not give me Audio.

    IE & Opera will give me audio with this:
    <embed src="sound/52211.wma" width="0" height="0" />
    I cannot get my website to work with Firefox. Other Browsers are OK.
    Can you help?
    http://slimowen.fatcow.com/cocochch/sermon%202011.html
    Try any of these.

    There could be more than one problem with the website. You may get lucky and get an answer, but you stand a better chance on somewhere like:
    * mozillazine http://forums.mozillazine.org/viewtopic.php?f=25&t=268518

  • Why won't this scriipt work with Firefox? embed src="News2008Fall.pdf" width="615" height="3200" /embed

    Please tell me why this script won't work with Firefox. It works with Safari. Here is the page that includes the script: www.lionsgatehoa.org/newslettertest.html. Thank you. Tom Engleman
    Here is the script in my html document:
    <embed src="News2008Fall.pdf" width="615" height="3200"></embed>
    edit: removed phone #

    Works for me on Linux.<br />
    Your system details list doesn't show the Adobe Reader plugin, so you will have to (re)install that program.
    See:
    *https://support.mozilla.org/kb/Using+the+Adobe+Reader+plugin+with+Firefox
    *http://kb.mozillazine.org/Adobe_Reader
    *http://get.adobe.com/reader/otherversions/

  • Upgrade issues in moving Exits and BADI Enhancements to ECC 6.0

    Hi All,
    I want to know when moving customer enhnacements including badis and exits etc.,  while upgrading from R/3 to may be ECC 6.0 what kind of issues will be  encountered .
    Will there be manual efforts required to import all of the ones migrated to this new framework.
    To my understanding the ones which exits in the same way can be imported in the new system however what about the ones migrated like conventional badis being included in enhancement-spot.
    I belive there would be issues because of the new enhancement framework and not all enhancements rather a good number of them would report issues as they might have got incorporated in this new technique.
    Please suggest with some logical explanation.
    To be precise let me add here, for example we have a badi implementation in old release. now when we import it to ECC 6 where badi implementation exits only in a container Enhacement implementation. Now my question is whether we have to create an enhacement implementaion for the badi implementation or not? i.e manual efforts will be required or not?
    thanks and regards,
    Vikas.
    Message was edited by:
            Vikas Taneja

    Hi Nikunj ,
              Thanks , I have one problem . I now installing AFS 6.3 ADDON in our server , While installing i got the message box given below .
    REPEAT      SKIP     CUST.COCKPIT
    PHASE CHECK_REQUIREMENTS :EXPLANATION OF ERRORS
    "THE SYSTEM HAS FOUND THE NUMBER OF OPEN DATA  REQUESTS "
    Kindly tell me , what i have to do .
    Regards
    Selvan

  • RC4 issues  when moving to solaris 10

    I am moving a few Solaris 8 / Sparc boxes to to be reconfigured with Solaris 10.
    I have the zones up and running without too many issues; however, we are having issues with changing run level from 3 to 4 and back.
    If I remember - the inittab would point to the script files that would then run scripts within /etc/rc4.d with the start / stop option.
    The rc4 script would be located in both /sbin with a symbolic link to /etc/rc4
    The scripts seems to work fine if I run them manually - however, they don't seem to respond to "init 3" when I am at init level 4.
    What I am looking for is detailed documentation that covers creating support for run level 4.
    Brad - In Colorado
    P.S. We use run level 4 to activate application software on our lab computers for testing.

    If this is the first time since power up that init has entered a run level other than single-user state, init first scans /etc/inittab for boot and bootwait entries (see inittab(4)). These entries are performed before any other processing of /etc/inittab takes place, providing that the run level entered matches that of the entry. In this way any special initialization of the operating system, such as mounting file systems, can take place before users are allowed onto the system. init then scans /etc/inittab and executes all other entries that are to be processed for that run level.
    [http://docs.sun.com/app/docs/doc/816-5166/init-1m?l=all&a=view]
    wait
    When init enters the run level that matches the entry's rstate, start the process and wait for its termination. All subsequent reads of the inittab file while init is in the same run level cause init to ignore this entry.
    [http://docs.sun.com/app/docs/doc/816-5174/inittab-4?l=all&a=view]

  • UTF issue when moving from cf5 to cfmx7

    It's been long overdue so am moving from CF5 to cfmx7 on my hosting account.
    The issue is that my hosting account has disabled cfcontent.
    I am getting gibberish outputting utf data from my database. It works fine on cf5 but on cfmx7 I read someplace that you have to use cfcontent to output utf-8 correctly.
    Is there any work around without having to use cfcontent?
    I tried using cfprocessingdirective and cfheader tags to show utf but it didn't work. Any pointers or suggestions appreciated.
    Best Regards
    Sanman

    ok, since it's "N" you should be good to go with transferring the data (it's
    actually pretty simple). in cf5, write a page that does a simple query against
    the table(s) containing your data, i guess just select TOP 100 or so rows with
    the PK & the nText columns. simply output that query using a delimiter that you
    can parse easily (commas between columns & quotes for the nText would be my
    default choices). have a look at the output to make sure it's readable. if all's
    well, on the cf7 (or whatever) box do a cfhttp call to that cf5 page & dump out
    the cfhttp.fileContent or result if you use that. if it's still readable, then
    you can do the real xfer by:
    - backing up the original table
    - double checking that the backup is ok
    - triple checking that the backup is ok
    - adding another table w/just PK & nText columns
    - filling that with the properly encoded data
    - then do a join UPDATE against the old table

  • 802.1X Authentication issues when moving between switch ports

    Hi Guys,
    We are having some issues at our office where when users move from one switch to another, the 802.1X authentication does not want to take place. The PC just gets an APIPA address. Now I have read about features that MAC Move and MAC replace but they seem to be used when moving from one port a switch to another port on that same switch. Will MAC move help for issues between switches? And should I focus my attention on the switch's configuration or have a look at the NPS server that might be blocking that authentication as the user is already authenticated?
    My configuration we have on the switch ports look as follows:
    authentication host-mode multi-domain
    authentication order dot1x mab
    authentication priority dot1x mab
    authentication port-control auto
    dot1x pae authenticator
    Your help is greatly appreciated.
    Grant

    Hi Neno,
    Thanks for the reply. We are using NPS on a Server 2008 R2 virtual machine. The switches are stacked 2960S-48FPS-L running 15.0(2)SE. I will quickly do the debugs and get back to you.
    Here is the config:
    aaa group server radius customer-nps
     server name radius1
     server name radius2
    aaa authentication dot1x default group radius
    dot1x system-auth-control
    radius server radius1
     address ipv4 172.28.130.52 auth-port 1645 acct-port 1646
     key 7 05392415365959251C283630083D2F0B3B2E22253A
    radius server radius2
     address ipv4 172.28.131.52 auth-port 1645 acct-port 1646
     key 7 107C2B031202052709290B092719181432190D000C
    interface GigabitEthernet1/0/1
     switchport access vlan 300
     switchport mode access
     switchport voice vlan 2
     srr-queue bandwidth share 1 30 35 5
     queue-set 2
     priority-queue out
     authentication host-mode multi-domain
     authentication order dot1x mab
     authentication priority dot1x mab
     authentication periodic
     authentication timer reauthenticate 28800
     authentication timer inactivity 1800
     mab
     no snmp trap link-status
     mls qos trust cos
     dot1x pae authenticator
     auto qos trust cos
     storm-control broadcast level 1.00
     storm-control multicast level 1.00
     spanning-tree portfast
     spanning-tree bpdufilter enable

  • Issue when moving between screens

    Hi All,
    Since we started working with Siebel 8.1 in SI we started having an unexpected behaviour when moving to another screen. Basically, when we log in Siebel PRM, we go to "Contact Screen Homepage View (SCW)" and search button is modified to go the Contact/ Opportunities view.
    But if we don't want to work with contacts and try to go to another Screen ("Home Page", "Opportunity" or "Messages") instead of showing the selected screen Siebel goes to the Contact/Opportunities of the first contact found.
    In case we search for a contact, go to another screen from the Contact/ Opportunities view and try to go to another screen the application works as expected.
    Did anybody have the same issue? Do you knwo what can be happening?
    thanks!

    Freezermale,
    It may help to bring Excel to the foreground (by clicking the Excel icon in the Dock), then using the "Zoom" option under the Window menu.
    This solved my question by VikingOSX  on Oct 17, 2012 10:57 AM
    Window > Zoom.
    Command and + key will zoom in.
    Command and - key will zoom out.
    For applications that support trackpad zoom, enable Zoom in or out in Trackpad Scroll & Zoom prefs.
    See video at System Preferences > Trackpad > Scroll & Zoom. Hover pointer over Zoom in or Out.
    See the answer in context
    how to zoom on the new mountain lion
    https://discussions.apple.com/thread/4441149
    All my best,
    Allen

  • Embed tags and divs?

    I have a Flash files embeded in a div. The div adds space to
    the bottom
    of the embed tag it seems. If I add line-height:0 the problem
    goes way
    visually in the browser, but in design view in DW is still
    there. I have
    also notice that the same is true for some of my other divs,
    they have
    this little space under them in design view in DW.
    #rightSide_index {
    float: left;
    width: 515px;
    padding: 0;
    margin: 0;
    /*line-height:0;*/
    http://www.agilitygraphics.com/clients/cs/
    What could this be happening? Sorry for the audio on the
    Flash file, I
    can't mute it at the moment.
    Thanks a lot!

    Hi mistersquid,
       This is about as far from the correct forum as you can get. This has nothing to do with Apache per se. It is purely a question about HTML and JavaScript. However, there are some folks here that do some web development so you'll probably get an answer. In fact, I'm going to take a shot at it myself if I can figure out what you want.
       I don't understand the part about the image or the purpose of the corresponding link. Why do you want the execution of the recommended JavaScript to depend on a user click?
       If I understand their recommendations correctly, the QTWriteOBJECTXHTML function is invoked as the page loads. It sounds like the change that Micro$oft makes is triggered when an <Object> tag (or similar tag) is encountered while the document is being downloaded. The trick appears to involve adding the <Object> tags as the document is being loaded. By the time the document is rendered, the <Object> tags should be in it and the document should look just like it did before the fix. Thus, I don't see any point in changing the user experience.
       If you do have some compelling reason for changing the user experience, all you have to do is to code the page for that using <Object> or <Embed> tags. Then after you have what you want, do exactly what Apple recommends and simply replace <Object> tags like before. I don't believe that <Object> tags can be containers, can they? If not, it shouldn't be possible to create a page for which their recommendations fail to work in the fashion they describe.
    Gary
    ~~~~
       Diplomacy is about surviving until the next
       century. Politics is about surviving until
       Friday afternoon.
          -- Sir Humphrey Appleby

  • Sync issues after moving entire iTunes library to new iMac

    I have a question regarding moving an itunes library to a new computer and what happens to the devices that were synced with it.
    I moved a clients entire iTunes folder from the user-music folder on one iMac to another iMac, replacing it's itunes folder.
    I then opened iTunes and it read the library just fine, all content intact.
    The issue was with syncing the ipods that were originally connected to the previous computer.
    I thought that I could just hook up their iPod to the new iMac, since it is essentially the same iTunes folder/content/data and all should continue syncing just fine. Nope.
    The ipod (touch) would show 'syncing' yet no data would move between it and the new iMac.
    Same thing with their Apple TV - it was originally being synced with the older iMac.
    I had hoped, once moving the entire itunes folder to the new imac, that itunes would just go on talking with the Apple TV. Not the case.
    So far, the only thing I can do is to do a 'restore' on the ipod touch, then treat it like a new ipod and sync it with the new computer.
    I haven't dealt with the Apple TV issue yet - it would not be fun to erase the entire contents of the apple tv, then resync with the new imac. Lots of data to move around - but perhaps this is the only way?
    Kind of a bummer. Is this correct?
    It never gave me the 'this ipod is being synced with another computer/library' message either. It 'seemed' like it was going to work as I had hoped.
    I looked all over the computer, preferences folders, etc. to see if I could find something that associated the ipod with a particular library. I did locate the ipod backups folder in the application support folder and moved it over to the new computer too.
    I've always moved client's itunes library from their old computer to new computer without issues - I don't remember their being an issue with previously synced devices like iPods/iphones/Apple TV's.

    You didn't mention whether or not you authorized the new computer in iTunes. If not, do that and then sync the iPod. The iPod will recognize that this is a new computer and will ask you if you want to proceed - in this case, you want to do exactly that.

Maybe you are looking for

  • ACPIEC Embedded Controller error in Event Viewer on XP Partition

    So, when in my XP (SP2) partittion I recently started to get hangs when I try to put the system to stand by/hybernation at the blue "preparing to go into Stand by..." screen. It just sits there, locks up and I end up having to reboot. In the XP's Eve

  • Can't see sync folder in LR

    I would like to keep current year picture files in the sync folder and be able to edit them in LR. However, it doesn't show under my folders list for LR. Is there a way to do this? Update: finally got this to work.

  • Lost a file with all my photos in it?  HOW??

    I closed one of the two Bridge windows that were open and suddenly I no longer had my 2010 folder of all the photos I have taken this year!!  HELP!!  How do I get it back.  Apple did all they could and it's not in the trash.  Did I seriously just los

  • MSS SQL Server 2005 - Partitioning - Review Note 869407 for Status

    I was reviewing OSS Notes today in preparation for applying BW 3.5 Support Stacks 16 - 18 and stumbled on this note regarding partitioning on SQL Server.  Thought I'd share it.  Read the full note if partitioning on SQL Server is something you want.

  • HD7970 vs GTX670 in Premiere CC 2014

    Hi, can you tell me which card between these two is better now days in Premiere CC 2014?