How to make this work in IE?

Hello,
I'm trying to make my new website and it works well in all browsers except IE...
what should I change to make links work?
I use
<li id="bgcolor_grafico"><a href="#grafico">Graphic design</a></li>
<ul id="grafico">
        <li id="bgcolor_grafico">
                    <div class="portfolio">
                        <img src="pics/<?php if(!$row['icone']) { echo "indisponivel.jpg"; } else {echo $row['icone']; } ?>" width="293" height="284" />
                    </div>
        </li>
    </ul>
the hand cursor appears, but the link doesn't do nothing...
Thanks for help
Pluda

It works in IE7 as far as the link goes.
The page does not render properly otherwise though. Not sure if it's because of the Javascript or the CSS.
IE8:
The page looks right but the links are not working, as you said.
Not sure why but susspect that it's because you have the same ID and name on two different tags.
Use only one, not the same thing on both the <ul> and the <a>.
For IE8 this could be breaking either the Javascript, the Link, or both. See the example again for a way to separate the tags. I did not know you were using a javascript on the link. That will make a difference. Not sure the anchor tag will work. Depends on the script, but try it first before trying to figure out another way.
I notice that the links do not work in FireFox if Javascript is turned off. That may be something to know while you are troubleshooting.

Similar Messages

  • TS2634 I bought a composite AV cable with 30 pin connector at a proper apple store for my ipad 2 which no longer works now i have updated to ios7 - please advise how to make this work ?

    I bought a composite AV cable with 30 pin connector at a proper apple store for my ipad 2 which no longer works now i have updated to ios7 - please advise how to make this work ?

    I have the same problem.
    Two similar discussions:
    https://discussions.apple.com/message/23081658#23081658
    https://discussions.apple.com/message/23281391#23281391
    I have not yet seen any official response to the question: "Is the Apple AV Composite cable fully supported with 30pin connector devices upgraded with iOS7 - specifically ? - eg. iPad 2, iPhone 4, iPhone 4s"
    If it is not currently supported is that then due to a bug / oversight and in that case is it something that will be fixed in the near future?
    Please let us know what feedback you got from asking Apple support.

  • How to make this work with Firefox, HELP!

    Downloading for Real-player, after watching the full movie, I click download and it has to reread the movie from the internet. When using explorer, after downloading the movie, it reads it from memory, which makes it a fast download. How to make this work with Firefox, I like not to use Microsoft products, and I really like Firefox 7.0.1!!!! HELP!

    -> click '''Firefox''' button and click '''Options''' (OR File Menu -> Options)
    * Advanced panel -> Network tab
    * place Checkmark on '''Override Automatic Cache Management''' -> under '''Limit Cache''' specify a large size of space
    * Remove Checkmark from '''Tell me when websites asks to store data for offline use'''
    * click OK on Options window
    * Restart Firefox
    Check and tell if ts working.

  • How to make this work flow?

    Hi,
    In a target database such like MySQl, I define a colum role to store the roels in SIM. Then, I want to make a post-workflow that set the account with related role which is defined in the DB after reconciliation and move those accounts from this DB to a specified organzation.
    How to make this workflow?
    If anyone know about this, kindly help me...
    thanks..

    Just a thought... Are you able to run this as activesync? If you use activesync you could just use a form or metaview to merge (or replace) your role value with waveset.roles and set the org for accounts that correlate.
    -Rob

  • How to make this work with Firefox, I like not to use microsoft products! HELP!

    Downloading for Realplayer, after watching the full movie, I click download and it has to reread the movie from the internet. When using explorer, after downloading the movie, it reads it from memory, which makes it a fast download. Hoow to make this work with Firefox, I like not to use microsoft products, and I really like Firefox 7.0.1!!!! HELP!

    -> click '''Firefox''' button and click '''Options''' (OR File Menu -> Options)
    * Advanced panel -> Network tab
    * place Checkmark on '''Override Automatic Cache Management''' -> under '''Limit Cache''' specify a large size of space
    * Remove Checkmark from '''Tell me when websites asks to store data for offline use'''
    * click OK on Options window
    * Restart Firefox
    Check and tell if ts working.

  • How to make this work in php

    Hello,
    I am fairly new to php and am having problems working out the
    best way to go about doing what i want to do.
    I want users of my system to be able to choose from a
    selection of images which they have earlier uploaded. I am using a
    system where the picture show is the one with the number 1 in the
    `use` colum of a mysql database, only i dont know how to make it so
    a user can change that number.
    Any help will be greatly appreicated weather that is how to
    get the above to work , or ideas of a different system i could use
    to have the same effect,
    thank you,
    James

    From the problem you're describing, I would set it up like
    this:
    Db1_Table 1 (tbl_Images)
    Columns
    1) id
    2) image_location
    Db1_Table 2 (tbl_UserPrefs)
    1) id
    2) user_name
    etc...
    x) image_location
    So, in your user preferences, use a dynamic drop down. The
    values will come from Db1_Table 1.
    When the user submits the changes to his preferences, the
    value from the dynamic drop down will go into Db1_Table 2.
    You'll need to have 2 Recordsets for this to work, of course.
    edit: you can also have something else besides a drop down,
    ex: autocomplete text field or option buttons.

  • How to make this works. it's about Runtime.exec().

    hi' i really need help about this.
    i have 2 class file. one named GoodWindowsExec that used to execute another file named maintest. (i post my code below). When i run GoodWindowsExec there's no problem but not working correctly.
    What i need is i can write something directly from my keyboard not via GoodWindowsExec file. So maintest can run normally just like when i execute it manual (java maintest from commandprompt) and display the output. If you look at the maintest file, this file need input from user. But why i can't doing this directly? How to implement this?
    This is java code that i need to execute (maintest) just for sample :
    public class maintest
         public static void main(String[] args)
              try
                   BufferedReader bfr = new BufferedReader(new InputStreamReader(System.in));
                   System.out.print("Try input word : ");
                   String readInput = bfr.readLine();
                   /* String readInput = bfr.readLine(); i think this is the problem.
                    * If i remove this, GoodWindowsExec works fine.
                    * But i cannot remove it. This is my point.
                    * i want try to solve this */
                   System.out.println(readInput);
              catch(Exception e)
                   System.out.println(e);
    }This is my code (GoodWindowsExec) which used to execute maintest :
    public class GoodWindowsExec
         public GoodWindowsExec()
              try
                   String[] cmd = new String[]{"cmd.exe","/C","java","maintest"};
                Runtime rt = Runtime.getRuntime();
                   Process proc = rt.exec(cmd);
                   InputStream inStream = proc.getInputStream();
                   BufferedReader bfr = new BufferedReader(new InputStreamReader(inStream));
                   response res_in = new response(bfr);
                   InputStream errorStream = proc.getErrorStream();
                   BufferedReader errorBfr = new BufferedReader(new InputStreamReader(errorStream));
                   response res_err = new response(errorBfr);
                   res_in.start();
                   res_err.start();
                   OutputStream otStream = proc.getOutputStream();
                   DataOutputStream write = new DataOutputStream(otStream);
                   write.writeUTF("something");
                   /* write.writeUTF("something");
                    * i really don't know about this.
                    * if i declare this, the input not come from maintest / user directly.
                    * if i create some java editor application and want to execute some java code
                    * this is not right. cos input comes from this class not the execute class (maintest).
                    * How to make the input comes from user / execute class?
                   write.flush();
                   write.close();
                int exitVal = proc.waitFor();
                System.out.println("ExitValue: " + exitVal);       
              catch (Throwable t)
                 t.printStackTrace();
        public static void main(String args[])
              new GoodWindowsExec();
    class response extends Thread
         BufferedReader bfr;
         public response(BufferedReader bfr)
              this.bfr = bfr;
         public void run()
              try
                   String line = null;
                   while ( (line = bfr.readLine()) != null)
                             System.out.println(line);   
              catch (IOException ioe)
               ioe.printStackTrace(); 
    }Thank you very much...

    Hi' i think i have same problems with you. but now i think i got it after read this article. Thanks for both of you. specially sabre150.
    But i want to ask about this to sabre150. What if maintest try to request more than one input? How to handle it? and why Try input word : display at the second line? not the first line?
    i'm sorry if i modify this, but i change it like this :
    class outputer :
    public void run()
         try
              bfr = new BufferedReader(new InputStreamReader(System.in));
              String input = null;
              while ((input = bfr.readLine()) != null)
                   write.writeBytes(input);     
                   write.flush();
                   write.close();
         catch(Exception e)
              e.printStackTrace();
    }maintest :
    public class maintest
         public static void main(String[] args)
              try
                   BufferedReader bfr = new BufferedReader(new InputStreamReader(System.in));
                   System.out.print("Try input word : ");
                   String readInput = bfr.readLine();
                   System.out.println(readInput);
                   System.out.print("Try input word again : ");
                   String readInput2 = bfr.readLine();
                   System.out.println(readInput2);
              catch(Exception e)
                   System.out.println(e);
    }When i execute i got this :
    test //request for first input
    Try input word : test
    Try input word again : null
    ExitValue: 0
    halo //request for second input
    java.io.IOException: The handle is invalid
         at java.io.FileOutputStream.writeBytes(Native Method)
         at java.io.FileOutputStream.write(Unknown Source)
         at java.io.BufferedOutputStream.flushBuffer(Unknown Source)
         at java.io.BufferedOutputStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at outputer.run(GoodWindowsExec.java:78)Maybe you know the answer sabre150?
    Thanks...
    Message was edited by:
    2Puluh11Lapan3

  • IOS 6 updated on my 3GS phone. The maps works well but does not give spoken turn by turn directions. Any ideas on how to make this work?

    Installed iOS6 on my 3GS phone. The maps app works well, but does not give spoken turn by turn directions.
    Any ideas on how to fix this?

    Go to http://www.apple.com/ios/maps/ and look at the bottom: Turn-by-turn navigation is available only on iPhone 4S, iPhone 5, and iPad 2 or later with cellular data capability. Flyover is available only on iPhone 4S, iPhone 5, iPad 2 or later, and iPod touch (5th generation). Cellular data charges may apply.
    You can always use the WAZE app like I do.

  • CRM 2013: Iframe does not display the url set in onform load event with setSrc. How to make this work?

    I have a situation we need to display a url in Iframe when a form is loading. the url is set in code with setSrc, or updated the query string value. this worked in crm 2004 not any more in 2013.  MSDN states the below to avoid in OnLoad event. what
    is the best way to handle this situation?  Searched web people recommend using setInterval which i dont want to use.
    Any help on this issue is appreciated. 
    https://msdn.microsoft.com/en-us/library/gg328034(v=crm.6).aspx
    Avoid using the OnLoad Event. IFRAMES and web resources load asynchronously and the frame may not have finished loading before the Onload event script finishes. This can cause the src property of the IFRAME or web resource
    you have changed to be overwritten by the default value of the IFRAME or web resource URL property.

    Thank you for you reply.  this URL you send uses window.setInterval which i am not comfortable using it. we need to call clearInterval(),
    if not the IFrame refresh every second. 
    function SetURL()
    if(Xrm.Page.ui.controls.get("IFRAME_ActivitySmmary")!=null)
    Xrm.Page.ui.controls.get("IFRAME_ActivitySmmary").setSrc(reportUrl + "&id="+ customerId);
                    Xrm.Page.ui.controls.get("IFRAME_ActivitySmmary").setVisible(true);
    else
    { window.setInterval("SetURL()",1000);}

  • How to make this work?

    I hope you'all experienced users can help.
    I come from a background of having worked for a County Govt. where we as the IT staff had Blackberrys. I am guessing they had a BES. I got used to that function! Now, I just bought an 8830 through Verizon, and I am somewhat frustrated. I was led to believe that I could make my new BB function with my POP3 accounts similarly to the way my old one did with Exch/Outlook email. That is:
    -When an email comes in, it is in both my inbox on my desktop AND on my Blackberry.
    -If I reply to an email on my BB, the reply will also show up on my desktop, and vice versa.
    For the record, I use Thunderbird.
    Can it work this way, or is that not possible w/o the BES? Can I get close? If so, how close and how do I do it?
    Thanks for the help.
    Eric Lorenz

    Your thunderbird email will come into BB and Outlook, but when you reply from BB, the sent message from BB will not show up on your outlook.
    Workaround is that you can set up autobcc email address in BIS, this will make your sent items from BB go to your email address as well.
    Now also you will set up a filter in BIS for not to receive messages from your thunderbird address ( as autobcc will go from your address). this will eliminate the autobcc sent email from coming back to device.
    Also in your outlook auto bcc messages will show as coming from your thunderbird address, you can set up  another filter in outlook to put all message received from your address in sent items on outlook.
    Click on KUDOS to appreciate our efforts and mark the thread RESOLVED if your issue is resolved.

  • Restore-SBFarm - How to make this work?

    Hi, I've read through some docs on the restore-sbfarm cmdlet, which according to Microsoft does the same as new-sbfarm except with existing databases (full of data one would assume). Restore-SBFarm
    I have tried to do this, but I keep running into an existing database error. If you try to use new-sbfarm against an existing set of databases you will get a 'database...is already configured' error. Fair enough, but I am getting this with the restore-sbfarm
    command.
    Restore-SBFarm -GatewayDBConnectionString "Data Source=10.xx.xx.22;Initial Catalog=SbGatewayDatabase;User ID=servicebusfarm;Password=xxxx"
    -SBFarmDBConnectionString "Data Source=10.xx.xx.22;Initial Catalog=SbManagementDB;User ID=servicebusfarm;Password=xxxx"
    -FarmCertificateThumbprint '35B05CA7404141FD82142C0l9815456537' -RunAsAccount Administrator -CertificateAutoGenerationKey $CertKey
    It then throws this:
    Restore-SBFarm : Cannot validate argument on parameter
    'SBFarmDBConnectionString'. The database (SbManagementDB) located at SQL
    Server (10.xx.xx.22) is already configured.
    At line:1 char:172
    + Restore-SBFarm -GatewayDBConnectionString "Data Source=10.xx.xx.22;Initial
    Catal ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidData: (:) [Restore-SBFarm], ParameterBind
       ingValidationException
        + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.Servi
       ceBus.Commands.RestoreSBFarm
    I have tried a different certkey password, which I believe is used to encrypt the contents? All of the other parameters should be OK.
    Thanks

    -> click '''Firefox''' button and click '''Options''' (OR File Menu -> Options)
    * Advanced panel -> Network tab
    * place Checkmark on '''Override Automatic Cache Management''' -> under '''Limit Cache''' specify a large size of space
    * Remove Checkmark from '''Tell me when websites asks to store data for offline use'''
    * click OK on Options window
    * Restart Firefox
    Check and tell if ts working.

  • How to make this work selecting advanced record set dreamweaver complains and crashes all the time

    Hi There
    I have met a person who does php and sql work but not with dreamweaver. The code I have works but dreamweaver shows me an error with my record sets and it crash all the time.
    <?php require_once('../Connections/datexdatabase.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    if($_GET['pageID']==''){
        $pageId = 1;
    }else{
        $pageId = $_GET['pageID'];
    mysql_select_db($database_datexdatabase, $datexdatabase);
    $query_rsIndex = "SELECT pages.title, pages.meta_keywords, pages.meta_description, content.header, content.`description`
    FROM pages INNER JOIN content ON pages.id = content.page_id WHERE pages.id = ".$pageId." ORDER BY content.order";
    $rsIndex = mysql_query($query_rsIndex, $datexdatabase) or die(mysql_error());
    $row_rsIndex = mysql_fetch_assoc($rsIndex);
    $totalRows_rsIndex = mysql_num_rows($rsIndex);
    ?>
    <?php do { ?>
            <?php if($row_rsIndex['header'] != 'Introduction'){ ?>
            <b><?php echo $row_rsIndex['header']; ?></b>
            <?php } ?>
            <p><?php echo$row_rsIndex['description']; ?></p>
            <?php } while ($row_rsIndex = mysql_fetch_assoc($rsIndex)); ?>
    <?php
    mysql_free_result($rsIndex);
    ?>
    I am able to join the tables in the advanced recordset but i am getting confused with "" FROM pages INNER JOIN content ON pages.id = content.page_id WHERE pages.id = ".$pageId." ORDER BY content.order";"
    mysql_select_db($database_datexdatabase, $datexdatabase);
    $query_rsIndex = "SELECT pages.title, pages.meta_keywords, pages.meta_description, content.header, content.`description`
    FROM pages INNER JOIN content ON pages.id = content.page_id WHERE pages.id = ".$pageId." ORDER BY content.order";
    My question is how can I use dreamweaver with the advanced recordset with the pageID without dreamweaver crashing 20 times a day
    Regards

    My question is how can I use dreamweaver with the advanced recordset with the pageID without dreamweaver crashing 20 times a day
    Do you get any errors in Dreamweaver when it crashes?
    What version?
    What OS?
    Have you tried trashing recreating the user config folder ( http://kb2.adobe.com/cps/405/kb405604.html#main_user_config )?
    Have you tried trashing the preferences ( http://kb2.adobe.com/cps/839/cpsid_83912.html )?
    Has anything changed on the system recently (from program installs, to system / OS updates)?
    Have you tried creating a new user account on the system to verify there is no corruption in the current user's system data?

  • I need to sync my laptop and iphone to my bosses laptop and iphone.  Can two apple users share the same icloud?  If not, any suggestions on how to make this work?  We need to be able to pull files, etc

    I need to sync my laptop and iphone with my bosses laptop and iphone.  We need to be able to have access to the same files. 
    Any suggestions?

    Yes you can both use the same iCloud account.

  • I just got the new Ipad. When I try to send a message to my friends Iphone the blue send icon wont work.  Anybody have any advice on how to make this work.

    The blue icon is there, its just isnt bolded and doesnt do anything when i press it.  Please help!

    First, try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. When the screen goes blank then power ON again in the normal way.] It is 'appsolutely' safe!
    Then, see here http://support.apple.com/kb/HT3529

  • The GPU acceleration feature in LR 6 states that it has been disabled due to error; yet it is working in PS 6.  Any suggestions how to make this work in LR 6?

    Video card is up to date and meets the requirements for LR 6. 

    Video card is up to date and meets the requirements for LR 6. 

Maybe you are looking for

  • Microsoft Reporting Services

    Hi We are using SQL 2005 as a database for PCM v12.1 and plan to upgrade to PCM v13 SP1. Has anybody using Microsoft Reporting Services for preparing reports ? could you please guide on the same ? How good it is ? Is it easy to prepare report (in com

  • Invisible type in iwork '08

    After installing SL, tried to install iwork '08 but the type won't show up in any of the iwork programs. It is a black font, so I'm not sure why it is invisible. Any ideas?

  • What is the best upgrade can I get??

    When I bought my iBook I initially installed OS X 10.3.4. I was then given an upgrade CD a year or so later as part of a deal to buy my partner an iBook. I have since lost the upgrade CD but still have the original startup disk, which I have recently

  • Problem with mail after mountain lion install

    Mail has become sluggish to locking up after Mountain Lion install.  I get the color wheel each time I start typing in an address to send an email.  I also get the wheel when i am typing an address or name in any web page in Safari.  Is this a Mail P

  • Debug/trace info from .c program.....

    Is there a way to capture debug info from a c file that was executed by teststand (dll adapter)? To be more clear....I have a dll that has a lot print to screen statements all over the place. I would like to be able to see those prints in somekind of