Search Box css problem in Ensemble2 with Win Xp

Hi guys,
I've notice a problem in style of search box in ensemble example. When the search box get the focus, the blue selection has not round corner as you can see here:
http://justpaste.it/1h61
This problem is present also in Windows Xp sp3. Why there is this difference between Win 7 and WIn xp?
Thanks very much!

Have some performance issues on Windows XP, too.
I am using d3d prism settings to render on Windows 7 and XP. On Windows 7 everything working fine.
On Windows XP it is slow and sometimes flickering.
I didn't find a solution.
1) Tried to start the application with other prism settings like -Dprism.order=d2d and OpenGL.
2) I changed the 3d graphic settings that made it better, but didn't solve the issue.
Someone knows the difference of rendering the javafx application in Windows 7 and XP (DirectX 11, DirectX9.0c)?

Similar Messages

  • WebHelp Search Doesn't Display Search Box on Chrome or IE With Chrome Frame

    I have RH10 (recently upgraded from RH9) and WebHelp projects are having issues displaying the Search box within the Search tab on Chrome as well as IE with Chrome Frame installed. Instead of getting a search box, I get what almost looks like an index of numbers with associated hyperlinks. The search box appears and behaves fine on other browsers such as Firefox, Safari and IE without Chrome Frame. I assume this is JavaScript related since all of my tests point in this direction, but no idea how to get it to behave. Attached is a screen shot of how it appears...Any suggestions?!?

    Any other suggestions? Not really but Item 10 in http://www.grainge.org/pages/authoring/rh10/using_rh10.htm covered how to fix another IE Frame issue. Maybe that would help put your developers on the track for a fix.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • CSS problems in CS4 with multiple images on a page...

    I seem to have a ton of questions going in this forum, sorry if it's painful.
    Here's my latest issue.(DW CS4)
    I created a blank html page and linked a CSS file to it. I dropped a bunch of images into the body and wrapped them in a div with an id of "thumbnails"
    I clicked on my img tag right below the Design window and clicked the "new css rule" button in the CSS Styles window and gave my images a margin of 40 px.  I clicked "OK" and my changes took effect in the Design window, but when I previewed it in the browser (Firefox and IE) none of the CSS was taking effect, all the images were still crammed together. Same thing for the "Live View" Button, I'm not sure what happened, or why the CSS won't take effect.
    Can somebody help me?
    Thanks all,
    Aza

    My HTML follows-----
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <link href="../CssFiles/oneColLiqCtrHdr.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="oneColLiqCtrHdr" id="Thumbnails"><img src="../images/Jewelry/Thumbnails/T_Bracelets/Bellarri_ColoredStone_Over10k_1.jpg" width="166" height="150" alt="Bellari" /><img src="../images/Jewelry/Thumbnails/T_Bracelets/CynthiaGregg_Gold_Over5k_1.jpg" width="178" height="150" alt="Cynthia Gregg" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/FrankRuebel_BestBracelet_2501_5k_1.jpg" width="150" height="150" alt="Frank Ruebel" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Gabriel_BestBracelet_2501_5k_1.jpg" width="156" height="150" alt="Gabriel" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/GeralynSheridan_FashionBridge_500Under_1.jp g" width="178" height="150" alt="Geralyn Sheridan" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Jyes_Legends_Over5k_1.jpg" width="150" height="150" alt="Jyes Legends" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Maevona_BestBracelet_5001_10k_1.jpg" width="166" height="150" alt="Maevona" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/SalPraschnik_Legends_Over5k_1.jpg" width="208" height="150" alt="Sal Praschnik" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Sara_BestBracelet_Over10k_1.jpg" width="156" height="150" alt="Sara" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/Starhaven_Silver_501_1k_1.jpg" width="166" height="150" alt="Starhaven" />
      <img src="../images/Jewelry/Thumbnails/T_Bracelets/SylvaCie_BestBracelet_Over10k_1.jpg" width="150" height="150" alt="Sylva Cie" /></div>
    </body>
    </html>
    *************CSS FOLLOWS********************
    @charset "utf-8";
    body {
        background: #666666;
        margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
        padding: 0;
        text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
        color: #000000;
        background-color: #000000;
    #jewelryFrame {
        font-family: Georgia, "Times New Roman", Times, serif;
        color: #CCC;
    #jewelryFrame p {
        font-size: 12px;
        padding-bottom: 75px;
    .oneColLiqCtrHdr #container {
        width: 100%;  /* this will create a container 80% of the browser width */
        background: #FFFFFF;
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
        border: 1px solid #000000;
        text-align: center; /* this overrides the text-align: center on the body element. */
        background-color: #000000;
        max-width: 960px;
        min-width: 800px;
    .oneColLiqCtrHdr #header {
        background: #DDDDDD;
        padding: 0;
        width: 960px;
        height: 141px;
        background-color: #000000;
        color: #CCA4A5;
        font-size: 11px;
        font-style: normal;
        font-family: Goudy Old Style;
        background-image: url(../images/CPJ-Header.png);
    .oneColLiqCtrHdr #header h1 {
        margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
        padding: 30px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
        color: #FFFFFF;
    #navbar {
        background: #999999;
        height: 29px;
        width: 960px;
        background-color: #000000;
        background-image: url(../images/CPJ-NavLT.png);
        background-repeat: repeat;
    .oneColLiqCtrHdr #container #navbar img {
        border-width: 0px;
        border-style: 0;
        border: 0;
    #sideBarLeft {
        float: left;
        width: 30%;
        height: 100%;
        min-width: 250px;
        padding-top: 50px;
        padding-left: 40px;
        padding-right: 40px;
    .oneColLiqCtrHdr #container #sideBarLeft p {
        text-align: justify;
        font-size: 12px;
    .oneColLiqCtrHdr #container #sideBarLeft h2 {
        font-size: 14px;
    .oneColLiqCtrHdr #container #sideBarLeft h1 {
        font-size: 24px;
    .oneColLiqCtrHdr #container #sideBarLeft {
        color: #CCC;
        padding-top: 15%;
        padding-bottom: 15%;
    .oneColLiqCtrHdr #mainContent {
        padding: 0 60px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
        background: #FFFFFF;
        background-color: #000000;
        color: #969696;
        font-family: "Goudy Old Style";
        font-size: 18px
        text-align: center;
        vertical-align: middle;
        min-height: 500px;
    .oneColLiqCtrHdr #container #mainContent p {
        font-family: "Goudy Old Style";
        font-size: 18px;
    .oneColLiqCtrHdr #container #mainContent h1   {
        padding: 0px;
        font-family: Georgia, "Times New Roman", Times, serif;
        color: #969696;
        font-family:"Goudy Old Style";
        font-size:36px;
    .oneColLiqCtrHdr #container #mainContent h6 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 72px;
        font-weight: bold;
        vertical-align: middle;
        line-height: normal;
        color: #CCC;
    .oneColLiqCtrHdr #container #mainContent #staticprivacy h3 {
        padding: 0px;
    #jewelryFull {
        padding-top: 25px;
        padding-right: 0px;
        padding-bottom: 25px;
        padding-left: 0px;
        font-family: Georgia, "Times New Roman", Times, serif;
        float: none;
        width: 100%;
        max-width: 960px;
        background-image: url(../images/CPJ--MainBG_slice_15.png);
    .oneColLiqCtrHdr #container #mainContent #jewelryFull {
        font-family: Arial, Helvetica, sans-serif;
        color: #CCC;
    .oneColLiqCtrHdr #container #mainContent #jewelryFull img {
        border-top-style: solid;
        border-right-style: solid;
        border-bottom-style: solid;
        border-left-style: solid;
        border-top-color: #CCC;
        border-right-color: #666;
        border-bottom-color: #666;
        border-top-width: medium;
        border-right-width: medium;
        border-bottom-width: medium;
        border-left-width: medium;
        margin-top: 25px;
    .oneColLiqCtrHdr #container #mainContent #jewelryFull p {
        text-align: justify;
        margin-top: 0px;
        font-size: 10px;
    .oneColLiqCtrHdr #container #mainContent #mycarousel {
        text-align: center;
        height: 500px;
    .oneColLiqCtrHdr #footer {
        padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
        background:#DDDDDD;
        background-image: url(../images/CPJ-Red-Footer.png);
        height: 63px;
        width: 960px;
        vertical-align: top;
        list-style-type: none;
        clear: both;
    #BottomNav {
        font-family: "Arial Black", Gadget, sans-serif;
        font-size: 11px;
        color: #CCC;
        height: 100%;
        margin: 0;
    .oneColLiqCtrHdr #container #footer #BottomNav ul {
        list-style-type: none;
    .oneColLiqCtrHdr #container #footer #BottomNav ul li {
        display: inline;
    .oneColLiqCtrHdr #container #footer #BottomNav ul li a {
        list-style-type: none;
        list-style-image: none;
        float: right;
        padding-right: 45px;
        color: #969696;
        text-decoration: none;
        font-weight: 500;
        font-family: Arial, Helvetica, sans-serif;
        padding-top: 10px;
    .oneColLiqCtrHdr #footer p {
        margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
        padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
        color: #FFF;
        text-align: right;
        font-family: Tahoma, Geneva, sans-serif;
        font-size: 12px;
    #quotes {
        text-align: center;
        margin-right: 65px;
        float: none;
    #quoteright {
        text-align: right;
        margin-right: 65px;
    #quotesleft {
        text-align: left;
        text-indent: 65px;
    #companyTitle {
        font-family: "Lucida Console", Monaco, monospace;
        font-size: 24px;
    #medImageArea {
        width: 100%;
        height: 50px;
    #Thumbnails img {
        padding: 40px;
    ************Thank you****************

  • Right mouse click problem on T60p with WIN-XP SP3

    I have T60p model. After upgrading my WIN-XP to SP3 i am facing problem with Right mouse click. Right mouse click starts working as left click. Initially when I reboot my machine it works fine but after sometime I start getting above mentioned problem. I even installed the latest mouse drivers(ultranav) from Lenovo site. Has anyone got this same problem? Looks like Lenovo should fix this problem.
    Thanks in advance. 

    This isn't necessarily a driver problem, and it's not necessarily Lenovo's problem.
    The primary and secondary mouse buttons can be switched by a program you are running, although it wouldn't seem that this is very likely.
     Windows Start Menu | Settings | Control Panel | Mouse. This will take you to the Mouse PropertiesTabbed Dialog. Click on the Buttons tab. There you can see if the primary and secondary buttons are truly switched. If so, you can switch them back, without rebooting the machine.
    Centex

  • HT4796 I can't see where are the folders that I had in my old PC on my new Mac after the migration. Even when I see it on my Mac using the search box, it doesn't appear with the right order of my old PC. I need some help, please.

    I used the Migration utilitie from Lion and eventhough I know the folders are there (with a quick search I find images etc) the proper order is not displayed.

    Migrate your Windows files or system to your Mac
    http://support.apple.com/kb/HT2518

  • Has anyone found a fix to the code on Google Toolbar (NOT a Google search box) to make it work with Firebox 9.0.1? my tool bar doesn't show any icons and says its not compatible. I've tried to fixes to no avail.

    Firefox verson: 9.0.1
    Google Toolbar version:
    I've tried two fixes:
    1. Went to Firefox Profiles at AppData >Roaming > Mozilla> Firefox > Profiles > Default Profile > Extensions and look for the directory where the Google Toolbar is installed. Mine is located at {3112ca9c-de6d-4884-a869-9855de68056c} directory.
    Changed the maxversion to 10. Find this line <em:maxVersion>4.0.*</em:maxVersion> to <em:maxVersion>10.*</em:maxVersion>\
    2. Went to Lib dircotry and opened up the file toolbar.js with a text editior and replaced all www.google.com/accounts WITH: accounts.google.com

    You can turn off compatibility checking, but more and more of the Google Toolbar will not work. Google is no longer supporting the Google Toolbar so you should use the alternatives.
    Hi Mark,
    See http://kb.mozillazine.org/Using_Google_Toolbar_features_without_toolbars
    If you have an aspect that is not covered, indicate what that is; otherwise, expect you to be fully functional within 1-2 weeks.
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • HYPER-V problem (Thinkpad Twist with Win 8 Pro 64bit and 8GB Ram)

    Hi, I have the problem to run hyper-v and getting the error "hypervisor" is not running.  I have checked my hardware and OS should be able to run, and also done the command "bcdedit /set hypervisorlaunchtype auto".  Does anyone got the same problem or advise?
    Thanks.

    i am not sure if this is applicable to you.
    http://forums.lenovo.com/t5/ThinkPad-Edge-S-series/Thinkpad-Edge-e335-Virtualization-issue/m-p/11525...
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Is there a way to search several keywords at a time on the top right search box?

    Hello.
    Let's say I want all the images to appear that have any of these keywords:  "sky, mountain, water".  The only way I have figured out it takes too long and it's tedious.  I open the "find" window and manually add search variables to look for several keywords and file names for the values that I am looking for.
    Isn't there a way to search for files that have any of the keywords I write on the search box by dividing these keywords with commas or any other puntuation? Or am I stuck opening the "find" window and add rows of variables that I want to search?

    I really do hope you are part of the development team for the Bridge.
    If only…
    I'm just a user like you and almost all other participants. Steve (SG) is one of the very helpful Adobe Engineers who occasionally hang around every now and then but they do so out of personal interest and kindness. They also try to be a shortcut to the Bridge engineers, it is no company policy to interact directly with developers on this user to user forum...
    But if I was responsible for resources for the Bridge development team they already would have had loads of money to realize my perfect Bridge and this process would have started from CS3 and above…. but as said, I'm just a humble photographer with no knowledge at all in programming applications and by far not enough money to realize this dream app
    Regarding your Find comments, I do realize there are some extra actions needed and the less you can make the better it would be. However as said, I don't know of any DAM application capable of what you want.
    It is kind of looking into a database and that needs separate criteria to my knowledge. If I had to use the search function that much I would look for a dedicated Digital Asset Manager to do this tasks.
    I'm not very deep in to knowledge about DAM but I use Canto Cumulus Single user for my Archive which is much faster then Bridge (Bridge is much better in other tasks so I need both).
    In Canto you can create a query to customize your own search needs in a better way but this needs some extra knowledge and study, I have only 65 K of files in my archive and searching is not that difficult using the normal route of quick find.
    And to comfort you a little, both Bridge and Canto do reopen the find menu with the last settings which is still not ideal but saves a bit of moves. Having the option to save templates like in batch rename would be a big plus but it is not an option yet.
    And of course, you can also put in a feature request for this:
    http://feedback.photoshop.com/photoshop_family/

  • Make google.co.uk default in search box in safari

    I was hoping that by version 4 of safari we really should be able to change the search engine in the search box. I am happy with it searching google but it searches google.com not google.co.uk!
    This is such a simple thing, but leaves anyone outside of the US with an unusable feature.
    Apple seems to neglect the non USA customers generally, such as with the US english dictionary.
    Anyone have any suggestions or know how to make a request to apple?

    HI,
    Try here.
    http://www.macosxhints.com/article.php?story=2009032004345842
    If the information in that link doesn't help, you can use the GoogleUK page. Just Bookmark it or add to your Bookmark bar.
    http://www.google.co.uk/
    You can use Apple Feedback here.
    http://www.apple.com/feedback/macosx.html
    Carolyn

  • PROBLEM WITH AUTO POPULATE IN THE GOOGLE SEARCH BOX

    When I type in the google search box it auto populates search terms as it always has. However since upgrading to FF4 when I click on the one I want to go to ... nothing happens. I have to type the full search every time. I don't see this issue anywhere in the forum, am I the only one having this problem?

    How Firefox is opened should not matter.
    It could be the work of one of your add-ons, or even add / mal-ware.
    Open your '''Add-ons Manager <Control><Shift > A''' and make sure you
    know what each one is and what it does.
    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    Also, check the programs that are on your computer
    '''Windows:''' Start > Control Panel > Uninstall Programs.
    '''Mac:''' Open the "Applications" folder.
    '''Linux:''' Check your user manual.
    Go thru the list. If you find something that you don't
    know what it is, use a web search.
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-caused-malware Troubleshoot Firefox Issues Caused By Malware]''' {web link}

  • Firefox always opens with a search box rather than my homepage.

    I have dragged the icon over to the homepage icon, and responded "yes" that I want to set it as my homepage. It always opens with a search box instead. http://www.searchqu.com/406 is the URL. How can I get it to use my homepage?

    i ran into a simuler problem using firefox 4 with win 7. browser would not display web address and when you open the browser it would display a blank page. also back, forward, and refresh button's where grayed out and could not click hem.
    after checking plugins i was able to get it working with disableing java deployment toolkit.

  • Start menu/Search box works one single time after boot and sporadically on seemingly random occasions. Win+D shortcut doesn't work either.

    Hi,
    This issue might be similar to what has already been reported but it feels different.
    I've attempted all solutions in this previous topic: https://social.technet.microsoft.com/Forums/en-US/7fb011ec-e986-4999-8cbf-21dba894432a/start-menu-button-and-search-not-working-in-windows-10-enterprise-technical-preview?forum=WinPreview2014General With
    the exception of rolling back to a previous build (which was working). I'm on 10061.
    I did registry editing, creating a new user, the powershell command (stumbled upon this just before finding the above link and it fixed that problem; the start menu/search box/Win+D bug was happening before the Metro Apps crash).
    A temporary fix exists which requires me to tskill explorer every time I want to use the start menu, the search box or show my deaktop. Not really practical. That will let me use them for a few times but once I click repeateadly on the search box (it is
    really slow), forget it. Not even the "show desktop" rectangle in the bottom right corner works (it doesn't in any other situation except the brief time were the other options are usable.
    Every other single Windows Key keyboard shortcut works.
    I hope enough information was provided but if anything else is needed, I'll do it.
    You know, honestly I wish Microsoft would just either dump the Metro Windows UI or burn the Classic Windows UI because
    still keeping the Control Panel divided and with no way interact with the Metro Apps outside of their environment is just stupid (or I'm not seeing the bigger picture).
    Thanks,
    Luiz.

    I have similar issues with build 10061, after I used System Restore. See also this topic: https://social.technet.microsoft.com/Forums/en-US/d1295cc3-e7c2-40be-a832-c1c648c669c2/system-restore-and-searchstart-menu?forum=WinPreview2014Feedback. 
    Things I have tried so far (but did not solve the problem for me):
    - Install Windows Updates (Suggested by Sharath in
    this topic)
    - Powershell scripts (Suggested by Sharath in
    this topic)
    - Disabling NVIDIA graphics in Device Manager
    - Enabling group policy settings
    - Registry fix (http://www.arunze.in/2015/02/fix-windows-10-start-button.html)
    - The windows-feedback:?contextid=158 command gives a 'The app didn't start' error.
    - Start menu and Search still don't work in contrast mode (Shift+Alt+PrScn)
    - Installing nVidia 347.88 drivers.

  • With firefox 4, google toobar seach box suggestions no longer appear in the search box itself

    After installing Firefox 4:
    When I start typing in the Google toolbar search box an item, like NYT and the search suggestions appear -- like NY Times -- I used to be able to click on "NY Times" and this would appear filled out in the Google search box. This no longer happens. Instead, what I have typed in is the only thing showing: NYT.

    I think this may not be a browser problem but rather a Google problem.
    I am getting the same problem with the Google Chrome browser.

  • Opening up a new tab in Firefox causes it to open with a Bing search box but I don't have Bing as a toolbar, extension, plug-in or default search engine.

    I am using Firefox 6.0 with Win 7.After upgrading from Vista to W7 and updating my various programs and drivers I found Bing set as my homepage and default search engine. I changed them both and they are okay now, but new tabs open with a Bing search box. I don't have a Bing toolbar, plug-in or extension, and Bing is no longer my default search engine or homepage. I do have the MS Office Live plug-in. I would like to have my new tabs open up blank.

    Thanks for the reply; couldn't get back to you sooner. Here they are just as copied:
    browser.search.order.3;Bing
    extensions.xmarks.SERPRegEx;(http:\/\/www\.google\..+\/.*[?&]q=([^&]+))|(http:\/\/[-a-zA-Z]+\.start3\.mozilla\.com\/search\?.*[?&]q=([^&]+))|(http:\/\/search\.yahoo\.com\/search?.*[?&]p=([^&]+))|(http:\/\/www\.bing\.com\/search?.*[?&]q=([^&]+))
    {5911488E-9D1E-40ec-8CBB-06B231CC153F}.default_search_url;Bing
    {5911488E-9D1E-40ec-8CBB-06B231CC153F}.keyword_search_url;http://www.bing.com/search?pc=Z128&form=ZGAADF&install_date=20110811&q=
    {5911488E-9D1E-40ec-8CBB-06B231CC153F}.provider;bing
    {5911488E-9D1E-40ec-8CBB-06B231CC153F}.provider_name;bing

  • Search box in viewer, loupe with downward triangle doesn't work anymore

    Hi,
    my Aperture 1.5.3 has a small problem with the viewer. On the top right there is a search box. There is a loupe and a downward triangle. This item used to do something (search presets). Now clicking on it has no effect. The search box itself still works. I can also click on the item on the left to the search box and I get the dialog. But the loupe item in the search box does not work anymore.
    Any idea how to get it back?
    Regards,
    Rainer Joswig

    We just released an update to the DPS tools that addresses the issues around HTML/iFrame and buttons in release 25. You can download the updated components by following the links at http://www.adobe.com/go/learn_dps_install_en.
    Neil

Maybe you are looking for