I am having problems with my button's showing up on the internet. I am using dreamweaver!!!!!!!

I am having problem's with my button's showing up when I published the site.
Before I published the website you could see the button's images in the preview's, but soon as I published the website the button's where there, but the image weren't
this is my codeing
Please help it would be much appreciate
</style>
<link href="css/layout.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body,td,th {
          color: #FFF;
#apDiv1 {
          position:absolute;
          width:526px;
          height:431px;
          z-index:1;
          left: 930px;
          top: 325px;
</style>
</head>
<body>
<div id="wrapper">
  <div id="logo"><a href="index.html"><img src="wettrades logo1 .jpg" width="922" height="200" alt="wettrades logo" /></a><a href="open trade acccount.html"><img src="openaccount.jpg" width="395" height="201" alt="open account" /></a></div>
  <div id="navigation"><img src="images /home button.jpg" width="266" height="117" alt="home button" /><img src="images /render 1 button.jpg" width="259" height="117" alt="render button" /><img src="images /adhesives &amp; waterproofing.jpg" width="277" height="117" alt="adhesives &amp; waterproofing " /><img src="images /tools button 1.jpg" width="263" height="116" alt="tool's button" /><img src="images /loaction button 1.jpg" width="255" height="116" alt="location button" /></div>I
All The Very Best
Entwisle1992 

Firstly, I do not understand why you are using an absolutely positioned div for your button.
And if you gave us an actual link to the website, we could see how the AP div actually does interact with your website.
But I do have a hunch:
Looks like you have positioned the button off the screen. If one has one's browser open to something like 900 pixels wide, your button will be 30 more pixels to the right of where the viewer's browser is. It will also be 325 pixels down from the top, which means it will be just below many headers.
With AP divs, often browsers won't show you scroll bars if you have positioned something off the page.

Similar Messages

  • I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    You are absolutely right.  Thought Enter meant Enter.  I was wrong.  Thank you for the help.
    Rod Rogers, Broker
    Accredited Land Consultant (ALC)
    Metcalf Land Company, Inc.
    Office: 864-585-0444
    Mobile: 864-316-0297
    Fax: 864-583-6000
    <http://www.metcalfland.com> www.metcalfland.com

  • Hey everyone I am haveing problems with Flash Button

    Hello everyone I am new here so I am haveing problems with
    Flash Button because of the html address it wont go to the address
    that i put into it it keep going to
    http://www.faithdesigner.net/www.faithdesigner.net/pricing.html/www.faithdesigner.net
    why does it do that? this is a link problem issue with flash
    button in macromedia dreamweaver 8?
    someone please help me?
    Jeremy

    >
    http://www.faithdesigner.net/www.faithdesigner.net/pricing.html/www.faithdesig
    > ne
    > r.net
    In the dialog box for the Flash Button, in the link box, put
    the full
    absolute path if an external page. Including the
    http:// part.
    http://www.example.com/page.html
    for pages inside your site- use the browse to file icon, and
    use a relative
    path.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    Apple ID FAQ   http://support.apple.com/kb/HE37

  • I just bought an AirPort Extreme system over this weekend and I am having problem with setting it up. I plugged the cable as explained in the manual but there is no way I can get a steady green light. I all see is flashing amber light. Can anyone help me,

    I just bought an AirPort Extreme system over this weekend and I am having problem with setting it up. I plugged the cable as explained in the manual but there is no way I can get a steady green light. I all see is flashing amber light. Can anyone help me,

    Think you need to provide some more details about what you are connecting

  • Im having problem with my whatsapp keep showing connect to itunes to use push notification

    i dont know why after downloading iso7 my facebook,whatsapps having problem with no alerts and asking me to connect to itunes use push notifcation

    you have to log in to your account on the computer iTunes and edit your payment information there.
    iTunes Store: Changing Account Information
    http://support.apple.com/kb/HT1918

  • Having problem with back button on

    The bottom left hand button on the Zen Micro won't seem to work correctly unless it is charged into the power adapter. I've tried the clean up mode but that didn't do anything, is there anything else that I can do other than rebooting it because I would hate to have to go through the whole method of inporting my music back on there cause it takes hours. Please give me any advice you have!
    ~Michelle

    having the same problem at www.dealnews.com
    not a problem with previous 3.32 version, but now i can't get back to the previous page without pressing the back button twice quickly.
    if you press it once, it just reloads the same page.
    i've reset safari, but nothing fixes it.
    anyone else have an idea?
    thanks!

  • Newbee,Having problem with submit button

    Hi All,
    I am very new to servlet.I am trying to delete record from my list which i am loading and showing from same servlet.It is compiling fine but when I press delete button it is not deleting the record.I don't know what's wrong with it? After delete happes i just want to see the list.
    please somebody help me.
    Here is my code:
    public class Delete extends HttpServlet
    private static final String title = "Delete Messages";
    private int load_count = 0; // to verify reloading
    private Exception initial_exception = null;
    private Connection cx = null;
    private ResourceBundle rb = null;
    private String table = null;
    private List messages = null;
    public void init()
    try {
    rb = ResourceBundle.getBundle( "Settings" );
    table = rb.getString("table");
    Common.load_driver( rb );
    catch (Exception x) { initial_exception = x; }
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    doGet(request,response);
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    HttpSession session = request.getSession();
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    if (initial_exception != null)
    out.println(initial_exception);
    return;
    messages = (List) session.getAttribute( "messages" );
    try {
    if (cx == null || cx.isClosed())
         cx = Common.get_connection( rb );
    if (messages == null)
         if (Common.DEBUG) System.out.println( "\n=> initial load of table" );
    messages = Common.getTable( cx, table );
    session.setAttribute( "messages", messages );
    catch(Exception x) { out.println("FIRST" + x); return; }
    out.println( "<html>"
              + "<head><title>" + title + "</title></head>"
              + "<body>"
              + Common.debug_display( request, load_count++ )
              + "<h3 align=center>"
              + title
              + "</h3>"
              + "<form action='..'>"
              + "<input type=submit value='top' />"
              + "</form>"
         String selected_index = request.getParameter("index");
         System.out.println("index=" + selected_index);
    if (messages.size() == 0)
    out.println( "<h4 style='color:red'>NO MESSAGES</h4>"
              +"</body></html>" );
    return;
    out.println( "<form>"
         + "<select name=index size=5 onchange='submit()'>\n"
         + Common.selection_list( messages, selected_index )
         + "</select>"
         + "</form>"
    if (selected_index != null)
         Message m = null;
    try {
    m = (Message) messages.get(Integer.parseInt(selected_index));
    catch(Exception x) { out.println("SECOND: " + x); return; }
    out.println( "<table>\n"
    + "<tr valign=top>\n"
    + "<td align=right>Creation:</td>\n"
    + "<td>"
    + "<input type=text onfocus='blur()' size=30 value="
    + Common.sgml_quote(Message.time2str(m.getCreation()))
    + ">"
    + "</td>"
    + "</tr>"
    + "<tr valign=top>\n"
    + "<td align=right>Subject:</td>\n"
    + "<td>"
    + "<input type=text onfocus='blur()' size=50 value="
    + Common.sgml_quote(m.getSubject())
    + ">"
    + "</td>"
    + "</tr>"
    + "<tr valign=top>\n"
    + "<td align=right>Body:</td>\n"
    + "<td>"
    + "<textarea onfocus='blur()' cols=50 rows=10>"
    + m.getBody()
    + "</textarea>"
    + "</td>\n"
    + "</tr>"
    + "</table>\n"
    + "<input type=submit name='action1' value='Delete'>"
    out.println( "</body></html>" );
    if (request.getParameter("action1") != null)
    Message m = null;
    String subject = request.getParameter("subject");
    String body = request.getParameter("body");
    try {
    String date = request.getParameter("creation");
    System.out.println( "\n=> date" + m.getCreation() );
    String sql_delete = "DELETE FROM" + messages + "WHERE creation = "+ Common.mysql_quote(m.getCreation());
    Statement st = cx.createStatement();
    st.executeUpdate( sql_delete );
    messages.remove( selected_index);
    session.setAttribute( "messages", messages );
    catch(Exception x) { out.println("SECOND" + x); return; }
    out.println( "<h4 style='color:red'>Message successfully deleted</h4>" );
    subject = body = null;
    out.println( "<html>"
    + "<head><title>" + title + "</title></head>"
    + "<body>"
    + Common.debug_display( request, load_count++ )
    + "<h3 align=center>"
    + title
    + "</h3>"
    + "<form action='..'>"
    + "<input type=submit value='top' />"
    + "</form>"

    I don't understand very well your code because it has no organization. Try to put all your code between a tag that is the word code inside brackets, and close that tag at the end of your code.
    For the code that I read, you're trying to get the parameters of a form that is in the same servlet. And the forms that you print didn't have an action. So, first of all, put an action on those forms, otherwise they will do noting, at least that you supply some javascript, which isn't the case. Later, don't think that you can call or continue the methods on a servlet just because you press a button which is printed in the same servlet.
    Nevertheless, put that code into brackets and we will try to help you better.
    Regards.

  • HT201301 I am having problem with Iphone5, it's show me iTunes & not working

    I am having a problem with my iPhone 5. It told to there was a system update. When I clicked it the screen showed me to plug it in to itunes however when going to itunes and updating it the phone won't turn on.

    What happened when you contacted iTunes support as directed?
    http://www.apple.com/support/itunes/contact/

  • I am having problems with an older ipod running 1.1.2 firmware trying to use earbuds with volume controls made for ipod. any suggestions?

    I am problems with an older Ipod classic running 1.1.2pc using earbuds with Ipod inline remote. The earbuds work fine with my new Ipod but not the older one. Any suggestions?

    1) This is because of software version 1.1. See this
    thread for some options as to how to go back to 1.0,
    which will correct the problem...
    http://discussions.apple.com/thread.jspa?threadID=3754
    59&tstart=0
    2) This tends to happen after videos. Give the iPod a
    minute or two to readjust. It should now be more
    accurate.
    3) This?
    iPod shows a folder icon with exclamation
    point
    4) Restore the iPod
    5) Try these...
    iPod Only Shows An Apple Logo and Will Not Start
    Up
    iPod Only Shows An Apple Logo
    I think 3,4, and 5 are related. Try the options I
    posted for each one.
    btabz
    I just noticed that one of the restore methods you posted was to put it into Disk Mode First rather than just use the resstore straight off, I Have tried that and seems to have solved the problem, If it has thank you. previously I have only tried just restoring it skipping this extra step. Hope my iPod stays healthy, if it doesnt its a warrenty job me thinks any way thanks again

  • Having problems with rollover buttons in canvas document.

    I have a button where on mouseover I want it to play an animation inside another instance on the timeline. So for example I have 2 blue rectangles on the stage. If I rollover one of them, the other rectangle plays an animation within it's nested timeline.

    use the stage enableMouseOver (EaselJS v0.8.0 API Documentation : Stage) and add your button's mouseover listener.

  • I'm having problems with My MacBook Pro ever since downloading the new OS..

    I downloaded
    Mac OS X Lion 10.7.2  a few weeks ago, and now I've noticed weird glitches. For instance, my WiFi is SUPER spotty (even though we have RoadRunner top speed), and then I am having these random, yellow QR code-looking things that pop up on my screen whenever I change webpages or open up a new page on my browser (Google Chrome). Any help?

    Well for one get rid of Chrome and use Safari. Chrome is not reliable with Lion and should be avoided. Safari and Firefox are the only two really reliable and effective browsers.
    Secondly, reinstall Lion:
    Reinstalling Lion Without the Installer
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alterhatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • Anybody else having problem with iPOD TOUCH ios4.3.3. deleting the special speakers menu on the Zeppelin Air ?

    The latest ios firmware update for the iPOD TOUCH (4.3.3.) has accidently removed the special speakers menu from the B&W Zeppelin Air.
    How can this problem be reported to Apple to fix it ??????????????????

    I recently purchased an infiniti FX35 with the ipod integration. After visiting the local apple store "Genius Bar" and speaking on the phone with an "apple expert"; neither the genius bar or the apple expert heard of such an integration option in new cars being sold. They wanted more information from me about how it work rather than them assisting me with my problem.
    Anyway, after alot of experimenting I got my ipod touch 2G running firmware 3.1 to work somewhat consistently.
    Turn off wi-fi on the touch, power off then back on, go the ipod menu and select playlist. Attach the touch to the infiniti supplied cable through the dock connector. Select the ipod option from dash board. Playlist, songs, artists, etc will appear on the dash display and begin playing.

  • HT4623 Im having problems with my music ever since I got the ITunes Match, now I'm not able to listen to some songs and my ipod doesn't want to update the iOS saying something about my network and I'm hooked up to the internet?

    I was just have difficults in different things on my ipod touch 4th gene now that I have ITune Match and it not being able to update the iOS 6.1.5 and as to not sure of what I can do to get it to update and get all my songs back. Because right now I have at least 20 or 30 songs that I cant play now and I'm not sure why. I'm not even able to click on the songs and I wanted to see if there was a way to fix this without restore my ipod and starting over.

    Maybe this:
    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem

  • Our home network has multiple devices connected by iCloud. Having problem with Calendar. On one iMac, all the events are duplicated. How can I correct that problem? Under the Calendar accounts, I had my Apple id listed and also just iCloud.

    Our home network has multiple devices connected by iCloud: 2 iMacs, 2 iPhone 4s, 1 MacPro Laptop, and 1 iPad 2.  When using Calendar, all the events were
    duplicated on my husbands iMac.  On his computer, under Calendar accounts, I had included iCloud and also my iCloud ID.  I thought that because I had two accounts listed that were connected to iCloud, that might be the cause of the duplication.  When I deleted ithe calendars from one of the accounts, it resulted
    in deleting all of the events on all of our network devices!
    I have since entered some new events into Calendar from my iMac and from my iPhone.  These appear correctly on all devices except my husband's iMac where they are again all duplicated.
    I have two questions: 1)  How can I eliminate the duplicated events on my husband's computer and 2) How do I retrieve the old wiped out Calendar events from
    Time Capsule.  I don't know how to find Calendar in the Time Capsule.  If I find the Calendar information in Time Capsule, how do I transfer it to my current Calendars?
    I was obtaining phone help from one of the Apple techs at Apple Support, but our call was disconnected part way through.  Didn't know how to reconnect with the tech.
    Thanks for any help.

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

Maybe you are looking for

  • Why can't I download and install iCloud on windows 7 Laptop?

    Downloaded iCloud for PC from apple, started install and got an error message, then program uninstalled all changes it had made.  What's my problem?

  • Open file not waiting

    I'm using Open/Create/Replace file to read a one-line string of text from a file. If the file is found, the contents are read, the string is parsed and various parts of it sent to outputs, and the file is deleted. If the file isn't found, nothing hap

  • Audio Sync Issues Rendering Non-Standard FPS Sources

    I am using Premiere Pro to render clips taken with my Samsung Galaxy S3 which shoots Hi Def 1080p (1920x1080).  The problem is that it is not precise with respect to fps.  It shoots somewhere between 29.85 and 30 fps.  When I play the video on VLC or

  • Premiere Elements 9 stops working. A lot.

    Just bought and downloaded Premiere Elements 9. Just playing around with a couple of titles, a short video clip and one photo. Premiere Elements must have stopped working at least four different times. Is this normal? I have a brand new HP laptop wit

  • Trouble saving documents to server at work location

    I am using the following apps to edit documents located on the server at my work location from my home - Cisco AnyConnect VPN, FB file browser and Pages. I can easily bring up a document and edit it in Pages using these apps but I can not find a way