Image Shifted (Link attached)

I posted this message two days ago and I also read the
article about the layers. The background with the buttons was
created in photoshop then I put it in the middle of the page. Then,
I draw a layer to hold the swf file. When I view it in the IE, the
image shifted. I want to line it up with the four buttons. But,
when my husband view it on his computer, it lines up just fine. I
don't know what else can i do. Please help.
http://www.purcaro.net/development/index.html

> also know that the world "layer" was dropped out in CS4
Actually it was CS3.
> I read the "Page layout 101" and it said layer can help
you position page
> element.
No. It says to not be seduced by the apparent ease of
positioning.
> When you design a page, don't you want your content stay
in one
> position or area instead of shrinking or stretching
according to the
> browser's
> size?
Usually, yes. And it is quite possible (even normal) to do
that without the
use of absolute positioning.
> I found it if I don't use layer, the image shrinks or
stretches
You are mistaken here. Images do not shrink or stretch on a
web page
(UNLESS you have made their height/width a percentage -
that's pretty rare
and requires special intervention by you).
> I don't know
> if I have the right concept about layer.
I'm confident you do not. Let's look at your code -
1. You have no doctype (that's very bad). Please add this to
the top of
the page -
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN"
http://www.w3.org/TR/html4/loose.dtd">
2. You also have no <html>, <title>, or
<head> tags. Please add this
directly under the doctype -
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=utf-8">
<title>Untitled Document</title>
</head>
3. You have no <body> tags. Please add this directly
under the markup
added in #2 -
<body>
and this directly below the last markup on your current page
</body>
</html>
4. Then change this -
#Layer1 {
position:relative;
left:136px;
top:18px;
width:768px;
height:481px;
z-index:1;
#Layer2 {
position:absolute;
left:207px;
top:54px;
width:652px;
height:420px;
z-index:1;
#Layer3 {
position:absolute;
left:270;
top:auto;
width:499px;
height:405px;
z-index:1;
visibility: inherit;
#Layer4 {
position:relative;
left:250px;
top:50px;
width:552px;
height:399px;
z-index:1;
#Layer5 {
position:static;
left:251px;
top:75px;
width:549px;
height:402px;
z-index:1;
#Layer6 {
position:absolute;
left:252px;
top:40px;
width:551px;
height:402px;
z-index:1;
to this -
#wrapper {
width:792px;
margin:0 auto;
position:relative;
#Layer6 {
position:absolute;
left:252px;
top:40px;
width:551px;
height:402px;
z-index:1;
(that's right - delete the rest)
Finally, change this -
<div id="Layer6">
<script type="text/javascript">
AC_FL_RunContent(
'codebase','
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','550','height','400','src','Flash/FrontPage','quality','high','pluginspage','http://ww w.macromedia.com/go/getflashplayer','movie','Flash/FrontPage'
); //end AC code
</script>
<noscript>
<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
width="550" height="400">
<param name="movie" value="Flash/FrontPage.swf" />
<param name="quality" value="high" />
<embed src="Flash/FrontPage.swf" quality="high"
pluginspage="
http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="550"
height="400"></embed>
</object>
</noscript>
</div>
<div align="center"><img src="Photos/Background.jpg"
width="792"
height="576" border="0" align="absmiddle" usemap="#Map">
<map name="Map"><area shape="rect"
coords="203,496,399,555"
href="OurAlbum.html">
</map></div>
to this -
<div id="wrapper"><div id="Layer6">
<script type="text/javascript">
AC_FL_RunContent(
'codebase','
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','550','height','400','src','Flash/FrontPage','quality','high','pluginspage','http://ww w.macromedia.com/go/getflashplayer','movie',Flash/FrontPage'
); //end AC code
</script>
<noscript>
<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
width="550" height="400">
<param name="movie" value="Flash/FrontPage.swf" />
<param name="quality" value="high" />
<embed src="Flash/FrontPage.swf" quality="high"
pluginspage="
http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="550"
height="400"></embed>
</object>
</noscript>
</div>
<div align="center"><img src="Photos/Background.jpg"
width="792"
height="576" border="0" align="absmiddle" usemap="#Map">
<map name="Map"><area shape="rect"
coords="203,496,399,555"
href="OurAlbum.html">
</map></div></div>
and see what happens.
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
==================
"missmsia" <[email protected]> wrote in
message
news:[email protected]...
> Yes, you are right! I was told that it will be very
frustrated to use
> layer. I
> also know that the world "layer" was dropped out in CS4.
But, I would
> still
> like to use the world layer.
> I read the "Page layout 101" and it said layer can help
you position page
> element. It will also allow you to move freely. See,
this is what I don't
> understand. When you design a page, don't you want your
content stay in
> one
> position or area instead of shrinking or stretching
according to the
> browser's
> size?
> I found it if I don't use layer, the image shrinks or
stretches. I don't
> know
> if I have the right concept about layer. Please help.
Thanks.
>

Similar Messages

  • How do I save an image when there is a link attached?

    At times I run across an image that I want to "save" but it has a link attached to it, usually a link to the site's home page.
    When the link is there I am not given an option to save the image, just options relating to the link.
    How can I save such an image?

    Links can use "inline" images or "background" images.
    Inline images should appear on the right-click menu whether they are linked or not. (For example, the picture to the left of this reply should have both a link section and an image section.)
    Background images may not appear in that scenario (for example, the Firefox logo at the top of this page). You can save those images using
    Tools > Page Info > Media
    but it does take a little time to down-arrow through the list to find the one you want to save.

  • Unable to chance BG image need help - link attached.

    Using a template, I want to replace the George Washington image that is there with a bird image and have it be just as long, in other words turn my bird image into a mask as of right now when I enlarge, it gets big, and can make it large horizontally.
    Here is the link and I want the bird to be the same size as the George Washing image.
    http://img67.imageshack.us/my.php?image=needhelppagessl2.gif
    Thanks!

    First, for your "constrain" problem, uncheck Constrain Proportions in the metrics inspector. You can then drag a side handle to stretch the image. Like this:
    For masking, insert your image then insert a square/rectangle & resize it to what you want. Now move the rectangle on top of your image, shift-click to select the image (in addition the rectangle) then select Format > Mask with selected shape.
    Now I can move Muffin around in the mask

  • When I click images or links that should automatically open in a new window, instead a new blank window opens.

    For some time now and after firefox has automatically been updated a few times, I click on images or links which are supposed to open in a new window automatically. A new window opens but it is blank with no toolbars, just an adress bar with nothnig in it.

    mha007, Thank you. I walked through your suggested solutions and finally disabled all add-ons and restarted them one by one. The culprit seems to be ViewSourceWith 0.8.11. Interestingly when it is enabled I had to go to TaskManager to force Firefox to quit.
    Maybe this information will help others. I don't know if the cache clearing etc helped but I would suggest that others start but Bringing up Firefox in Safe Mode (hold shift when you select the icon), disable all add-ons and then start them one by one.
    Of course if you have ViewSourceWith maybe you should just disable it first rather than go through the tedium of restarting each add-on separately. To get to the add-ons when it won't open from the toolbar type about:addons in the address area.

  • Can't Display Shift Note Attachment (SHN2)

    Hi Gurus,
    I can make shift note attachment via tx. shn1.
    Before it was saved, I can still display the attachment (excel format, or plain image).
    The attachment more or less looks like this: filename.xls
    When I save, and check it in display mode via tcode SHN2, the attachment filename become like this:
    <SID>000000384
    Notice that the file name change, and the format extension disappear.
    I can't open the attachment this way.
    Can you help?
    Thanks.
    Regards,

    Hi, I've had the same problem with 6i. Our Admin moved the toolbar icons to special folder dedicated for such images other than the one with .fmx files of the module. Try to ask your Admin where the icons should be placed.

  • Fiery features : image shift not available

    my office recently changed printers to a canon imagepress C1+ and i upgraded to a new computer running 10.6.3. we have downloaded and installed the latest driver from canon.
    the "full properties" glitch is mentioned at [url="http://discussions.info.apple.com/thread.jspa?threadID=2190095&tstart=180 "]in this forum thread[/url], as is a workaround. however, for some reason *image shift* is NOT in the list of features i can add to the +quick access+ pane.
    this is an important feature from the user end, as we need to print double-sided and this corrects the placement of the second side. any suggestions welcome.

    There are two EFI (Fiery) RIPS available for the imagePRESS C1+. There is the imagePRESS-T1/T2 and the imagePRESS-Q1/Q2. The 1 indicates that the RIP is using system v1.x while the 2 indicates the RIP is running system v2.x. For the imagePRESS-Q2 and imagePRESS-T2, there is a now a 10.6 driver available that does not suffer the same restrictions as the 10.5 driver. You can download this driver via the following link...
    http://www.usa.canon.com/opd/controller?act=OPDSoftwareAct&fcategoryid=2478&mode lid=17921
    If you are using a T1, then you can download the 10.6 driver via the following link...
    http://www.usa.canon.com/opd/controller?act=OPDSoftwareAct&fcategoryid=2478&mode lid=14778
    Note that if you have a Q1 or T1, ie it is running system v1.x, then you will need to get the firmware on the RIP updated by a service technician to v2.x so that you can use this driver.
    Pahu

  • What is the best way to add multiple images with links into an email signature?

    I created an email signature with five linked images by:
    * creating new message
    • attached the image
    • adding link to the image
    • copied new email signature
    • under Preferences/Signature added the new signature
    It all works, but some of the emails bounced back. When we removed the images, the email went through.
    I  tried putting all the images into Photoshop and making it all one image, used the slice tool to create a link for each image and brought that single image into the signature, but that didn't work as separate links.
    Any suggestions?

    Hi Bob.
    So what I should have done on my PC for all my files is gone to the File menu and used the Package command which would have converted it into a file with the images in it so they wouldn't need to be relinked.
    From now on I will only be working on Mac (I gave away my PC) but I'm sure I could use a friend's pc (or at a later point install Windows on my Mac). But to use the Package command on PC I need to actually have the images in the correct folder on the PC right?

  • Question regarding image and links tag

    Hi. Im new to podcasting and have just had my first podcast excepted on itunes.
    Im using garageband.com to store my audio file and copy & pasting the address into itunes to submit it. (http://www.garageband.com/user/wabel/podcast/main.xml)
    What i dont understand is adding an cd cover image and links to a web site.
    I asume its sumular to html, where you type the code with link or image, but where? I cant edit within the above link!
    Please help.

    The "code" for images and links goes into the xml file.
    <?xml version="1.0" encoding="UTF-8"?>
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
    <channel>
    <ttl>60</ttl>
    <title></title>
    <link></link>
    <language></language>
    <copyright></copyright>
    <itunes:subtitle></itunes:subtitle>
    <itunes:author></itunes:author>
    <itunes:summary></itunes:summary>
    <itunes:owner>
    <itunes:name>John Doe</itunes:name>
    <itunes:email>[email protected]</itunes:email>
    </itunes:owner>
    <itunes:image href="http://example.com/podcasts/everything/AllAboutEverything.jpg" />
    <itunes:category text=" ">
    <itunes:category text=" "/>
    </itunes:category>
    <item>
    <title></title>
    <itunes:author></itunes:author>
    <itunes:subtitle></itunes:subtitle>
    <itunes:summary></itunes:summary>
    <enclosure url=" " length=" " type=" " />
    <guid></guid>
    <pubDate></pubDate>
    <itunes:duration></itunes:duration>
    <itunes:keywords></itunes:keywords>
    </item>
    </channel
    </rss>

  • The curser includes a text box from a previous image or link when the curser is positioned on the side of the page. i click and it goes away but only to return again on the next launched page. how do i get rid of this?

    the cursor includes a text box from a previous image or link when the cursor is positioned on the side of the page. it will mainly happen when i hit "back" from the page i was on. i click and it goes away but only to return again on the next launched page. i also keep several tabs open and it will carry over to any one of them i go to. how do i get rid of this?
    == This happened ==
    Every time Firefox opened
    == when i upgraded to most recent version 3.6.8

    A number of extensions can cause that problem, you'll need to do a little troubleshooting to find out which extension is causing that to happen for you.
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • I got a text message which had a link attached to it, i did click on the link, basically some job scam but on the link. Now i just want to find out if my phone has been compromised in anyway and what are the tell tell signs.

    I got a text message which had a link attached to it, i did click on the link, basically some job scam but on the link. Now i just want to find out if my phone has been compromised in anyway and what are the tell tell signs.

    your phone has not been compromised.  There have been no viruses, worms or trojan horses ever reported.

  • LaserJet Pro 200 color MFP M276nw prints image shifted 1/2" from top of page.

    When printing any report, diagnostic or form from the machine system I get printed image shift approx. 1/2" from the top.
    Is there any adjustment that can be made to the MFP to center image?

    Hi @patrick22152, 
    I understand that when printing documents or a printer hardware self test, it shifts 1/2" from the top of the page. I can help you with this.
    Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector) This ensures the printer is receiving full power and may help this situation.
    It sounds like the paper isn't feeding properly. Since you are having this issue with the hardware tests and printing from the computer. If it was just the computer, I would check the paper type selected in the print driver, to make sure it isn't set on the proper paper type and not the default unspecified paper.
    Try another type of paper to see if you get the same results.
    I have provided a document with some steps to try to see if that will resolve the issue.
    'Load Paper' Error Message Displays and the Printer Does Not Pick Up or Feed Paper.
    Disregard the title.
    Here is a example of how the Configuration Report should look like.
    Printing a Configuration Report.
    Run a cleaning page:
    From the Home screen, touch the Setup button.
    Touch the Service menu.
    Touch the Cleaning Page button.
    Load plain letter or A4 paper when you are prompted.
    Touch the OK button to begin the cleaning process.
    What size and kind of paper are you using?
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    How is the printer connected? (USB/Ethernet/Wireless)
    If you need further assistance, just let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • How can we hide the link "Attachment" in the preview of a Task??

    Hi all
    I have requirement in portal CE 7.1 as follows.
    all GP tasks are getting displayed in UWL that is fine.
    i want to hide the link "Attachment" in the preview of a Task??
    once i open the task from UWL then that task item opens in new window where i am getting the "Attachment" link that i wanted to hide or remove.
    Cab you provide ur inputs then it would be great help to me
    Thanks
    Sunil

    There are Subject, From, Send Date, Attachment .... columns.
    Do you want to hide Attachment column?
    Please refer wiki link :
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl%252bfaq
    How can I have the attachments options be hidden? Our users do not want to add attachments.
    In the UWL iview properties update the proprety "List of preview sections to hide (SUBJECT, ATTRIBUTES, DESCRIPTION, ATTACHMENTS, NOTES, USERDECISION, and/or ACTIONS)." Enter ATTACHMENTS as a value.
    Edited by: shrikant kamble on Feb 27, 2009 12:41 PM

  • The message cannot be seen on incoming emails.  I can only view the message if I click on reply.  Also any links attached to email will not open.  I have tried everything to solve the problem but not able to.

    A message cannot be seen on my incoming emails.  I can only view the message if I click on reply.  Also any links attached to email will not open.  I have tried everything to solve the problem but not able to.

    Try closing the Mail app completely and see if it works properly when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • HTML content with images and links blocked

    Hello,
    I very much need some help here because my company needs to send out newsletters to our clients in HTML format soon and so far the email with HTML content is being blocked as spam while text content works fine. Specifically, whenever I add a link or an image in HTML content, the email doesn't go through. I tried sending in multipart format but it is also not sending HTML with images and links. Here is my attempt:
                                    props.setProperty("mail.transport.protocol", "smtp");
                                     props.setProperty("mail.host", "mail.server.com");
                                     props.setProperty("mail.user", "joeuser");
                                     Session mailSession = Session.getDefaultInstance(props, null);
                                     mailSession.setDebug(true);
                                     Transport transport = mailSession.getTransport();
                                     MimeMultipart mp = new MimeMultipart("alternative");
                                     MimeBodyPart htmlPart = new MimeBodyPart();
                                     MimeBodyPart textPart = new MimeBodyPart();
                                     textPart.setText("Just to make it multipart");
                                     htmlPart.setHeader("MIME-Version", "1.0");
                                     htmlPart.setHeader("Content-Type", htmlPart.getContentType());
                                     htmlPart.setContent(strHtmlMessage, "text/html");
                                     mp.addBodyPart(textPart);
                                     mp.addBodyPart(htmlPart);
                                     MimeMessage message = new MimeMessage(mailSession);
                                     message.setHeader("MIME-Version", "1.0");
                                     message.setHeader("Content-Type", mp.getContentType());
                                     message.setHeader("X-Mailer", "Recommend-It Mailer V2.03c02");
                                     message.setContent(mp);
                                     message.setSubject(strSubject);
                                     message.setFrom(new InternetAddress("[email protected]"));
                                     message.addRecipient(Message.RecipientType.TO,
                                             new InternetAddress("[email protected]"));
                                             transport.connect();
                                             transport.sendMessage(message,
                                             message.getRecipients(Message.RecipientType.TO));
                                     transport.close();This code is one of my numerous attempts to make HTML send images and links. Please, let me know if there is a workaround way to make JavaMail send HTML with links and images in the message body. Your help will be greatly appreciated.

    The JavaMail FAQ has information on creating HTML messages, including
    messages with both plain text and HTML. Did you find it?
    BTW, your code has many unnecessary statements, such as setting
    the Mime-Version header, which JavaMail will do for you, and setting
    the Content-Type header, which JavaMail does as a side-effect of the
    setContent or setText calls.
    Other than that, it looks like your code should be correctly creating a
    multipart/alternative message. If the recipient is still rejecting it you
    need to figure out what it is about the message that makes the recipient
    think it's spam. Can you send a similar message using another mailer?
    Can you send the message to a different recipient?

  • Outbound plug, confusing error message: no navigational link attached

    Hello,
    I just finished the WebDynpro Quiz tutorial and deployed the application. Unfortunately when pressing the start button the application dumps and I get a stack trace
       com.sap.tc.webdynpro.services.exceptions.WDRuntimeException:
    Cannot navigate via outbound plug StartQuizOut of view WelcomeView
    because there is no navigational link attached to it
        at com.sap.tc.webdynpro.progmodel.view.View.navigate(View.java:349)
    indicating that there was no navigational link attached to my plug StartQuizOut. However the link is definitly there.
    As sources are not provided I cannot debug into the class named in the trace.
    Could someone please give me a hint. I think I did everything according to the tutorial, but I am stuck now.
    Regards,
    Sebastian Kamp
    P.S. I searched this forum for "no navigational link attached"; there are some threads with a similar problem description, but no solution is provided.

    Hi Zita,
    thanks for your answer. I kind of solved the problem. When following the Tutorial I ended up for some reason with two versions of/references on (?) the WelcomeView - one was embedded in the QuizViewSet, the other directly in the Quiz-Window - don't ask me how that happend. Anyway, both were identical except the navigation links. The embedded view had all the navigation links required, the other didn't. So eventually in despair I deleted this view.. and now it works fine.
    Regards,
    Sebastian

Maybe you are looking for

  • Out of memory problem using the API

    Hi all, I need your assistance, we are working with CDB 10.2 making searches and retrieving the documents with all their attributes. In our actual scenario we have a single user (which represents an application) accessing CDB. This user use several p

  • How to update mac os x 10.5.8

    how to update mac os x 10.5.8

  • A program that can rotate objects

    Is there any done program that can rotate objects from graph? I am not a programmer I just need to use that for mathematics. Any help will be appreciated.

  • WSUS and computers not showing up

    Hello I installed WSUS 3.2 and no computers in the domain are showing up? Any idea's

  • Problem with Scrollable image in design view.

    So I have defined I want my layout to be scrollable, and that works when I preview it. But the problem is it is not scrollable in design view. Why is this? is there away to fix this? Thank's in advance.