Hover color not changing

http://www.jdcdemo.com/seark/test.html
I alledgedly set up the style for the links to change background color on the top menu. For some reason which I have not been able to plumb, that ain't happenin'  Can someone who knows more that I tell me where I went astray?
Thanks,
Joe

lol, here is yoru selector for hover:
#nav1 li a:hover {
It's empty!
E. Michael Brandt
www.divahtml.com
www.divahtml.com/products/scripts_dreamweaver_extensions.php
Standards-compliant scripts and Dreamweaver Extensions
www.valleywebdesigns.com/vwd_Vdw.asp
JustSo PictureWindow
JustSo PhotoAlbum, et alia

Similar Messages

  • Color not changing on Selected Menu tab

    I'm creating a custom css and in doing so have been trying to change the text color of the selected menu tab. I've added it to my stylesheet but it is not changing upon running it. If I change the menu tab specifically via the properties of the tab, it will change. Is 'color' something we can change?
    Here is a snipet of my css:
    .af|menuTabs::selected {color:red;
    white-space:nowrap;
    font-family:Arial,Helvetica,Geneva,sans-serif;
    font-size:200%;
    background-color:white;
    font-weight:bold;
    text-decoration:none;
    Thanks,
    Lisa

A: Color not changing on Selected Menu tab

Your '.' before af|menuTabs is wrong.
It's just "af|menuTabs::selected" not ".af|menuTabs::selected".
Also, you need to use the ::selected-link pseudo-element to style the color of the text.
/* Make the selected tab bold */
af|menuTabs::selected-link
font-weight: bold;
font-size: 14pt;
color: green;
}

Your '.' before af|menuTabs is wrong.
It's just "af|menuTabs::selected" not ".af|menuTabs::selected".
Also, you need to use the ::selected-link pseudo-element to style the color of the text.
/* Make the selected tab bold */
af|menuTabs::selected-link
font-weight: bold;
font-size: 14pt;
color: green;
}

  • Why is the label color not changing when my file is updated?

    I would like the label color to change to white when a file has been updated/changed. Since upgrading to 10.7.2 the file color stays the same. Is there a setting I am missing that will allow the file to go back to white when updated?
    Thanks for any input...

    As far as I know, this is not standard functionality in the Mac OS.  Granted this, some third party application, or a script of something, was making this happen for you. Somehow the system update broke it. If you can figure out what software was giving you this feature, maybe you can update it or re-install it.
    charlie

  • Change Color in Spcolor File but Color Not Changed in Site - SP 2013

    I have changed the color in the spcolor file that is associated with the theme selected for my site, but when I save it and upload it to the site again, the color does not change on the site. Is there another way colors can be changed that would override
    the spcolor file?

    Hi Tracey,
    Please download the orginal spcolor file for particular composed look/theme from that site collection themem gallery, then change the color value with Notepad application, then upload it back to theme gallery to overrride spcolor file, check out and check
    in this file, then see if the custom color could be changed for that particular composed look for your site, please try this in a test site collection firstly.
    Also you can try creating a new custom composed look with custom spcolor for your site per the following articles, see if it could work.
    http://www.learningsharepoint.com/2013/06/03/create-custom-theme-in-sharepoint-2013-step-by-step-tutorial/
    http://bniaulin.wordpress.com/2012/12/16/step-by-step-create-a-sharepoint-2013-composed-look/
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Css link hover color not applied to last letter in safari

    Im only seeing this in safari. Here is my site:
    http://smartpeopletalkfast.co.uk/oo2/
    If I click on the contact page its highlihgted as it should be. However if im not on the contact page and I hover over the contact link, the last bit of the 't' is not highlighted. How can I fix this?
    Im assuming becuase its italic the last bit is outside of the div, and for some reason the hover color isnt shown. Ive tried applying both a:hover css aswell as li:hover a.
    Thanks

    I'm seeing it in FF 3.6.13 as well on the PC.
    Validate your page either throuth DW or the W3C. For one thing, you've got div tags inside li tags. Don't split up your styling . . . add the italic styling to the main styline for the li tag.
    If fixing the coding doesn't work, try adding some padding to the right of that container -- a couple of pixels ought to do it.

  • Color not Changing, So -

    May I hope that me reporting this problem helps to make Apple act?
    How weird of Pages v5.5.  I select text of which to change color, I select a color in the palette, but the color stays the-same.  :-(
    So I closed & I re-opened _just_ that file.  Colors then work as they-should.  :-)  How strange, yes?

    The NI installer does not have that level of flexibility. I would suggest looking into using a third-party installer. I use Inno Setup (http://www.jrsoftware.org/isinfo.php), which is free, and has a quick start pack download, but there's plenty of others out there.

  • Mouse hover style not changing

    Hello
    I am working on branding and am not getting the mouse hover css  like
    About Us same I want to do in Resource,selfservice,AdminLinks in second image
    Thanks,

    Its Top Navigation bar and the class name is "menu-item-text" .In the same top navigation bar I have subsite also when I mouse hover on that than am getting background image on mouse hover.

  • Link Color not changing for Visited Pages - How do I set the Color?

    In earlier versions of Safari, the user could select the color used to display links that have already been visited. I can't find that option in Preferences anymore. Some visited links do show a different color, some don't. Is it just random? How do I set the color in Safari 4.0.4 and activate the behavior?

    HI,
    I think you change visited pages link colors using Google preferences.
    http://www.googleguide.com/preferences.html
    Carolyn

  • Label color not changing color

    hi,
    i'm having some problems trying to set the color or a jlabel, but it's not working. here is the code:
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.text.*;
    import java.awt.event.*;
    public class PaperTest extends DefaultStyledDocument{
         int maxLen;       
         public static void main(String args[]) {
              JFrame paper = new JFrame();
              GridLayout gd = new GridLayout(3,1);
              paper.getContentPane().setLayout(gd);
                 paper.addWindowListener(new WindowAdapter() {
                  public void windowClosing(WindowEvent e) {
                       System.exit(0);          
             JLabel header = new JLabel("Header");
             JLabel footer = new JLabel("Footer");
             header.setBackground(Color.BLUE);          //  Set the color here
             footer.setBackground(Color.WHITE);       //  Set the color here
              JTextPane tp = new JTextPane();
              StyledDocument doc = (StyledDocument)tp.getDocument();
              tp.setDocument(new PaperTest(11));
              tp.setBackground(Color.RED);
         //     tp.setFont(new java.awt.Font("Serif", 0, 24));
              tp.setForeground(Color.WHITE);
              paper.getContentPane().add(header);
              paper.getContentPane().add(tp);
              paper.getContentPane().add(footer);
              paper.setSize(100,100);
             paper.setVisible(true);
         public void insertString(int offset,String str, AttributeSet a) throws javax.swing.text.BadLocationException {
             if( getLength() + str.length() >= maxLen )
                  return;     
             super.insertString(offset, str, a);   
         public PaperTest(int maxLen) {     
                 super();     
                 this.maxLen = maxLen;               //  Set the max length (chars) allowed in Note
    }Any ideas?
    Thanks.

    Hi,
    header.setOpaque(true); // <--- important
    footer..setOpaque(true);
    header.setBackground(Color.BLUE);          // Set the colorhere
    footer.setBackground(Color.WHITE);
    A label is normally transparent and displays it's container's color, unless you set it opaque.
    HTH

  • BackGround Color not Changing???

    Here is a section of my code.
    I am trying to make the label Black and the panel holding it, grey.
    I have written this way but the label remains grey.
    What is the matter and how do i deal with?
    TitledBorder titled2=BorderFactory.createTitledBorder("");
        titled2=BorderFactory.createTitledBorder(titled2,"Calculator",
        TitledBorder.CENTER,TitledBorder.TOP);
        //TitledBorder titled2=BorderFactory.createTitledBorder()
        F1=new Font("TimesRoman",Font.BOLD,36);
        calculator2= new JLabel();
        calculator2.setFont(F1);
        calculator2.setMinimumSize(new Dimension(220,110));
        calculator2.setPreferredSize(new Dimension(220,110));
        calculator2.setMaximumSize(new Dimension(220,110));
        //calculator2.setBorder(BorderFactory.createLineBorder(Color.black));
        calculator2.setBorder(titled2);
        calculator2.setBackground(Color.black);
        //calculator2.setBackground(Color.blue);
        //calculator2.setForeground(Color.black);
        Right1=new JPanel();
        //Right1.setBackground(Color.cyan);
        Right1.setMinimumSize(new Dimension(225,110));
        Right1.setPreferredSize(new Dimension(225,110));
        Right1.setMaximumSize(new Dimension(225,110));
        Right1.setLayout(new BoxLayout(Right1,BoxLayout.Y_AXIS));
        calculator2.setAlignmentX (Component.LEFT_ALIGNMENT);
        Right1.add(calculator2);
        //scrollPane2.setAlignmentX (Component.LEFT_ALIGNMENT);
        //Right1.add(scrollPane2);

    call:
    label.setOpaque(true);
    before setting background.

  • Hitting F11 in the form does not change the colour to blue

    Hi All,
    Hitting F11 in the form does not change the colour of the queryable fields to blue. Those fields remain white in color. The query functionality is working properly. The problem is only with the color not changing to blue. Is there any form property that needs to be checked? Other forms in this instance are working as expected.
    Thanks in Advance

    F11 is not generally thought of as the key to make fields blue, is it? Are you using E-Business Suite? If so you should probably ask this question in the apps Forum: General EBS Discussion

  • Changing hover color for TabNavigator tabs

    I was able to change the background color of selected tab to
    Navy and the others to Medium Blue. The foreground color is set to
    White. The default color for the hover seems to be black, so when I
    pass over the selected tab you can not read the text.
    How do you change the hover color?

    Try setting the textRollOverColor of your selected tab style.

  • I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Tha

    I try to insert some images on a website but the images are not in the right color mode. I do not know what to do? and also I have 1200 images to insert so I can not change one after one. So I need to set up an action, but I donot know how to do it... Thanks

    What is the problem specifiaclly?
    If the images are intended for web use I would recommend converting them to sRGB which could be done with Edit > Convert to Profile or with File > Save for Web, but as including a Save step in Actions and applying them as Batch can sometimes cause problems I would go with regular converting.
    You could also try Image Processor Pro.
    Scripts Page

  • Is there a way to disallow web pages to modify foreground color of elements if background of those elements was not changed as well (and vice versa)?

    I have very sensible defaults for my display; i.e. I have dark GTK scheme (dark gray background, light gray text) that suits me way more when working on my computer while it's dark around. I, however, like looking at web pages as how they were mean to be seen. Unfortunately, most of web designers don't think about anyone having non-default colors set up.
    Example one ( http://www.cedok.cz ):
    This site's CSS style has "color: rgb(45, 45, 45);" for the whole <body> but for <select> elements there is no "background-color" set. This means there is a select box rendered with dark gray background and dark gray foreground (text color). This is pretty badly readable (obviously).
    To mention one particular element from this site: e.g. <select id="ctl00_ContentPlaceHolderLevySloupec_HledaniMultiTab1_HledaniZajezdu1_ddlTypZajezdu">
    Example two ( https://support.mozilla.org/en-US/questions/new/desktop/customize/form ):
    On this page (where I'm currently filling in this question) the <textarea id="id_content"> has "background: ... rgb(255, 255, 255);" set, but with my default font color, this textarea is rendered as light gray text on a white background. Again, pretty unreadable (and eye-hurting).
    I can provide screenshots and more reasoning if needed.
    I'm asking if there is (or might be) an option (even disabled by default) or at least an add-on which would keep default colors unless both foreground and background colors were specified. I think this might make Firefox very usable for many people which like to have their default colors configured.
    In case you won't be able to help me by fixing this, could you redirect me to the right place where I could get this requested in a way that might be really possible to happen (bugzilla?).
    Thank you very much in advance.

    Thanks for the reply, but I'm sorry, no. I don't want any addon that customizes colors, I want to use default colors and only prohibit changing them unless both background and foreground colors are changed.
    I have made no color changes WRT to Firefox *only*, I just changed the default for the whole toolkit (gtk in this case). The thing I need is to disable changing *only one* property out of two ({back,fore}ground). Whenever the second one gets set as well, this new setting (both of them) may get reflected, but not before that. It'd be nice to keep this when changing the colors back (deleting the style), but that's not necessary.
    I hope that's understandable, feel free to ask for if that's not the case.
    To express what I mean a bit more precisely, see the attached image. In that image there are four textareas (one of the elements that gets affected by this). First one is a default one (which I want to have if the page has nothing set), the second one is nicely modified to fit for example to a blue-ish page (this one I like as well).
    Second row of textareas shows how the final element looks like if the page has only one of these elements set up. First one changes background without changing font color, the second one vice versa. Both of them are very badly readable, especially with low lighting around.
    This is consequently the same case when it comes to default page background which I cannot set at all, because too many pages have only "color:" set without changed background and that is completely messed up then. Going to extremes, I might mention all color-related modifications (see how ugly the borders look when the background is changed and nothing is done to these borders, their size and color is kept default), but I understand that's too much.

  • Visited links not changing color on iPad Safari or other browsers

    Hi,
    On my iPad, when I visite a site via an hyperlink and then go back to the initial page, the color of that link is not changing anymore like it is on my MacBook. For example, in Google search, the visited links don't turn violet and remains blue instead. This is the case in Google search, Yahoo but not with Bing. The problem occurs on all my iPad web browsers (Safari, Atomic Web...).
    Is it a bug or a config thing that I can fix myself ? Anybody have any idea or did find a solution to this same problem ?
    Thank you,
    Daniel

    Well, I'm a mixed bag. After wasting time and missing the point earlier, thinking that this was about the Google app, today I finally suss to the fact that the discussion's a tually about in fhe browser ...
    Anyway, I take a look and, sure enough, the first one I try does pop into a violet color when returning to the results page. I thought it distinct enough to easily notice, and couldn't remember seeing it before (use the app most of the time).
    Unfortunately, that was rthe one and only time I saw that happen over the next ten minutes of running searches on multiple topics. All subsequent cycles showed the exacrt same shade of blue on return, and this includes tests run in the middle of and following such steps as clearing the app (cache, cookies history), force quitting the app, and restarting the iPad.
    Nothing made any difference. That first time was the one and only time, so far, that I saw the color change.
    Also tried a Reset. No change. I guess if it's really supposed to work then a Restore might do it but .... I think not.
    Message was edited by: Michael Morgan1

  • Maybe you are looking for

    • AFS-PO split

      Hi, I am unable to view the new PO No under logs tab st after successful simulation of Tcode- /n/afs/splitpo.

    • Service Entry Sheet Short text in GR accounting document

      Hi All, Once we Accept the Service Entry sheet then a material document will be created in background.What ever text we are assigning in SHORT TEXT (ESLL - KTEXT1) will automatically appearing in Material document in "WHERE" tab TEXT field. I think t

    • Forløb i skærm på Imac 27" fra midt2010

      Hvorfor er det at Apple ikke laver et udvidet reparationsprogram eller udvidet garanti på Imac 27" model 2010 (vores købt april 2011) med en fejllodning som ifølge mange tråde på nettet og mac-reparatører er almindelig kendt for den generation mac? j

    • R3load procedure creates additional tables in the target system

      Hi All My source  system  is  46C SR2 /oracle 817/HP_UX PARISC           and Target System  is  46CSR2 /Oracle 10202/HPUX IA I used R3load procedure to export database from source system and completed import successfully into  target system without a

    • Get iCloud incomplete backup files

      Hello, does someone knows how to download all the data from a incomplete backup that is on iCloud. I saw i some days ago, and maybe there is some photos that I had lost http://imgur.com/Z5aVbBJ PS: I already try Dr. Phone and it just shows the comple