Link roll over color

I have tried to change the roll over color of a link (contact) to red as instructed  by going to Modify/Page Properties/Links and changing the rollover color but nothing happens.   Its it because it is somehow tied to the spry menu (which behaves as it should).   There seems to be no end of barriers to trying to get things to work - anyone know of a good instruction book??
http://web.me.com/suethomo/sitenew/Index.html#

Last night i did not have anytime to actually look at the code of yours...but now with my morning coffee I want to rearrange a few things in your code.
1: by using the "page properties" wizard with DW it will embed your styles into the head of the page. You can simply cut and paste the CSS to your main style sheet.
2: the issue your are having is the order of the pseudo selectors. Pseudo need to be in a specific order in order for them to function. A:hover must be placed after the A:link and A:visited rules. Rework the order of your css like below:
a:link {
    text-decoration: none;
    color: #666;
a:visited {
    text-decoration: none;
a:hover {
     color:#F00;
a:active {
    text-decoration: none;
Also remove the ( h3 a) rule from my previous post as that was simply overriding the error in your code. To remember this in the future think of LOVE HATE (a long time css trick among the web community)
L  a:link
O
V a:visited
E
H a:hover
A a:active
T
E`

Similar Messages

  • How do you change the roll over color of text?

    i have text that i made a link and the roll over color is orange....how do i change this color? thanks

    cocktail5555,
    It's laid out pretty good by Suzanne Boben in in this thread, or you can use FrogDance.
    Mark

  • Disable roll-over-color in List

    Hi,
    I'd like to only use roll-over-text-color in my list, but have no roll-over-color at all. Is there a way to kill the roll over color, as well as the selection color?
    Thanks

    @upshotvideo,
    For mx:List, I think Harui is suggesting something like the following:
    package comps {
        import flash.display.Sprite;
        import mx.controls.List;
        import mx.controls.listClasses.IListItemRenderer;
        public class NoHighlightList extends List {
            public function NoHighlightList() {
                super();
            override protected function drawHighlightIndicator(indicator:Sprite, x:Number, y:Number, width:Number, height:Number, color:uint, itemRenderer:IListItemRenderer):void {
                // super.drawHighlightIndicator(indicator, 0, y, unscaledWidth - viewMetrics.left - viewMetrics.right, height, color, itemRenderer);
    Peter

  • Change roll-over color of combobox?

    Hey everyone.
    I have a simple question. What is the property of the combo
    box component that can change the RGB value of the roll over of a
    combo box to change it from the defalt green?

    combobox.setStyle("themeColor", "0x990000");
    put this code on your timeline where you have the compnent
    instantized.
    change name "combobox" to your component instance name and
    change the hex color "0x990000" to color desired...you have to have
    the "0x" before the hex for it to work

  • Roll over color problems

    I have created a rollover color change for a text sprite
    however the colors
    are not appearing correctly I tried these 2 versions. What is
    wrong?
    on mouseEnter me
    sprite(me.spritenum).color = rgb( 255, 205, 222 )
    end
    on mouseLeave me
    sprite(me.spritenum).color = rgb( 255, 0, 0 )
    on mouseDown me
    sprite(me.spritenum).color = rgb( 5, 0, 122 )
    on mouseUp me
    sprite(me.spritenum).color = rgb( 0, 0, 255 )
    end
    ----and then I tried this to use the pallete:
    on mouseEnter me
    sprite(me.spritenum).color = 3
    end
    on mouseLeave me
    sprite(me.spritenum).color = 6
    on mouseDown me
    sprite(me.spritenum).color = 5
    on mouseUp me
    sprite(me.spritenum).color = 3
    end
    --The colors change but not to expected colors. Why is that?
    I would
    think 255,0,0 would be red and 0,0,255 would be blue.
    thanks,
    cj

    Mike,
    That fixed it.
    Thanks,
    cj
    "Mike Blaustein" <[email protected]> wrote in
    message
    news:e6rtuo$df4$[email protected]..
    > Change the sprite references to member references. The
    sprite's .color
    > property uses the index color, and the member's .color
    property uses the
    > RGB that you want.
    >
    > sprite(me.spriteNum).member.color=color(0,0,255)

  • How can i change the color of the text on a button in Roll Over or Click state (Cs5.5)

    Hello,
    Here is the problematic:
    1° How can i change the color of the text on a button in Roll Over or Click state (Cs5.5)
    - I've many button in a doc im creating
    - the color of the buttons is white with black stoke & black text
    - in roll over state i want them to inverse the color coding (the text white & bottom black)
    - currently the text becomes invisible as black on black cant be seen (ive stroked it white but that looks ugly)
    - i would just like to know if there is a function made for this?
    My other questions:
    2° Ive a presentation on which Ive created buttons which tigger pop-up animations
    - i have 5 buttons which trigger animations
    - the viewer can chose to Click on any of the buttons randomly
    - the problem is once the animation is open how can it be close... either:
    a) by it self after "40" seconds
    b) when ther viewer clicks another button
    3° Ive created buttons linking pages..
    - "go to page xxx"
    - when i do a preview and click on the buttons the links dont take me to the right pages
    - is that normal? (maybe in preview its suppose to be like that)
    4° I would like to intergrate YouTube videos in the presentation so they play inside the docment.. when i tried.. it said the 'link isnt a flash video'
    - what should i do?
    5° Once i export it into Swf. how how can i visualize it? or put it online?
    Thank you for your time.

    stlbbl4u wrote:
    Hello,
    Here is the problematic:
    1° How can i change the color of the text on a button in Roll Over or Click state (Cs5.5)
    - I've many button in a doc im creating
    - the color of the buttons is white with black stoke & black text
    - in roll over state i want them to inverse the color coding (the text white & bottom black)
    - currently the text becomes invisible as black on black cant be seen (ive stroked it white but that looks ugly)
    - i would just like to know if there is a function made for this?
    You should setup Object Styles - these can also include Paragarph Styles that can be triggered when the Style is selected.
    http://help.adobe.com/en_US/indesign/cs/using/WS5CEDB81A-0011-4dc9-9DE8-AC7AD4C80076a.html
    My other questions:
    2° Ive a presentation on which Ive created buttons which tigger pop-up animations
    - i have 5 buttons which trigger animations
    - the viewer can chose to Click on any of the buttons randomly
    - the problem is once the animation is open how can it be close... either:
    a) by it self after "40" seconds
    b) when ther viewer clicks another button
    I'm not sure what you mean - I don't do files with Animations
    3° Ive created buttons linking pages..- "go to page xxx"
    - when i do a preview and click on the buttons the links dont take me to the right pages
    - is that normal? (maybe in preview its suppose to be like that)
    Does it work properly when you export it to the finished file?
    4° I would like to intergrate YouTube videos in the presentation so they play inside the docment.. when i tried.. it said the 'link isnt a flash video'- what should i do?
    InDesign won't link directly to youtube videos. I think your best bet would be to use Downloader to download the video and embed them directly in Indesign.
    5° Once i export it into Swf. how how can i visualize it? or put it online? 
    Thank you for your time.
    You can look up how to embed a SWF file into your HTML - but it depends what you mean by "online" there's a dozen ways to get a file "online".

  • Linked images "jump" when rolled over

    When rolling over an image being viewed on a page in IE/Mozilla, it seems to "jump" if it is linked to a larger version of the same image.  Am guessing it is a setting in Page Properties, but I believe I've changed just about everything with no luck. 
    The actual code of an example is: <td width="250"><div align="center"><a href="http://www.meistersoftware.com/images/tmp_pkg.jpg"><img src="images/tmp_pkg_tn_f8.jpg" width="140" height="101" alt="sc tmp" /></a></div></td>
    Any suggestions? Please be gentle if it's a blatantly obvious error

    Would be glad to but it's not online yet.  Here's the entire <div> Hopefully, it may shed some light -
    <div align="center">
    <table width="575" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td> </td>
    <td colspan="3" ><blockquote>
    <hr align="center" height="2" width="480" />
    </blockquote></td>
    <td> </td>
    </tr>
    <tr>
    <td width="17"> </td>
    <td width="250"><div align="center"><a href="http://www.meistersoftware.com/images/tmp_pkg.jpg"><img src="images/tmp_pkg_tn_f8.jpg" width="140" height="101" alt="sc tmp" /></a></div></td>
    <td width="16"> </td>
    <td width="272"><div align="center"><img src="images/pzl_icon_r21.jpg" width="83" height="83" alt="pzl_icon_l" /> <img src="images/pzl_icon_l45.jpg" width="83" height="83" alt="cryptoquote" /></div></td>
    <td width="20"> </td>
    </tr>
    <tr>
    <td height="15
    "> </td>
    <td><div align="center"><strong style="color: #036; font-size: 18px;"><a href="http://www.meistersoftware.com/t_main.html" style="color: #036; font-size: 21px;">TicketMeister</a></strong><a href="http://www.meistersoftware.com/ticketmeister.html"><span style="font-size: 10px; color: #036;">&copy;</span></a></div></td>
    <td> </td>
    <td><div align="center"><strong style="font-size: 18px; color: #900;"><a href="http://www.meistersoftware.com/z_main.html" style="color: #900; font-size: 21px;">PuzzleMeister</a></strong><a href="http://www.meistersoftware.com/puzzlemeister.html"><span style="font-size: 10px; color: #900;">&copy;</span></a></div></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td height="15
    " style="font-size: 12px"><blockquote>
    <p align="left"> &#8226; Print<strong> Raffle Tickets</strong><br />
    &#8226; Reserved Seating<br />
    &#8226; Consecutive Numbering<br />
    • Chinese Auction Cards</p>
    </blockquote></td>
    <td> </td>
    <td style="font-size: 12px"><blockquote>
    <p align="left">&#8226; Create and Solve Puzzles<br />
    &#8226; <span style="font-weight: bold">Boggle</span>, <span style="font-weight: bold">Jumble</span>, <span style="font-weight: bold">Cryptoquotes</span><br />
    &#8226; All levels of difficulty<br />
    • 200,000+ word dictionary</p>
    </blockquote></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td><div align="center"><strong><em style="color: #036"><a href="http://www.meistersoftware.com/products/ticketmeister" style="color: #036">ONLY 29.95!</a></em></strong></div></td>
    <td> </td>
    <td><div align="center"><strong><em style="color: #900"><a href="http://www.meistersoftware.com/products/puzzlemeister" style="color: #900">ONLY 17.50!</a></em></strong></div></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td colspan="3" style="font-size: 12px"><blockquote>
    <hr />
    </blockquote></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td width="250"><div align="center"><a href="http://www.meistersoftware.com/images/bms_pkg.jpg"><img src="images/bms_pkg_tn_f8.jpg" width="125" height="107" alt="sc bms" /></a></div></td>
    <td> </td>
    <td width="272"><div align="center"><a href="http://www.meistersoftware.com/images/pms_pkg.gif"><img src="images/pms_pkg_tn_f8.jpg" width="152" height="115" alt="tmp tn" /></a></div></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td><div align="center"><strong style="font-size: 18px; color: #f00;"><a href="http://www.meistersoftware.com/b_main.html" style="color: #F00; font-size: 21px;">BingoMeister</a></strong><a href="http://www.meistersoftware.com/bingomeister.html"><span style="font-size: 10px; color: #f00;">&copy;</span></a></div></td>
    <td> </td>
    <td><div align="center"><strong style="font-size: 18px; color: #060;"><a href="http://www.meistersoftware.com/p_main.html" style="color: #060; font-size: 21px;">PrintMeister</a></strong><a href="http://www.meistersoftware.com/printmeister.html"><span style="font-size: 10px; color: #060;">&copy;</span></a></div></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td style="font-size: 12px"><blockquote>
    <p align="left">&#8226; Print <strong>Bingo Cards</strong><br />
    &#8226; 1-on, 2-on, <em>ANY</em>-on<br />
    &#8226; Numbers, Pictures or Text<br />
    • w/ <strong>Pop-Out Bingo Clipboard</strong></p>
    </blockquote></td>
    <td> </td>
    <td style="font-size: 12px"><blockquote>
    <p align="left">&#8226; <span style="font-weight: bold">Door Hangers</span>, Envelopes<br />
    &#8226; Wallet Calendars, <span style="font-weight: bold">Bookmarks</span><br />
    &#8226; <span style="font-weight: bold">Post Cards</span>, Business Cards<br />
    • Even a<strong> Page Numberer</strong>!</p>
    </blockquote></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td><div align="center"><strong><em style="color: #F00"><a href="http://www.meistersoftware.com/products/bingomeister" style="color: #F00">ONLY 24.95!</a></em></strong></div></td>
    <td> </td>
    <td><div align="center"><strong><em style="color: #060"><a href="http://www.meistersoftware.com/products/printmeister" style="color: #060">ONLY 19.95!</a></em></strong></div></td>
    <td> </td>
    </tr>
    <tr>
    <td height="9"> </td>
    <td colspan="3"><hr /></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td colspan="3" style="font-size: 18px; color: #036;"><div align="center">
    <p><strong><a href="http://www.perforatedpaperonline.com"><span style="text-align: center; font-size: 24px;">www.perforatedpaperonline.com</span></a><br />
    </strong><span style="text-align: center; font-size: 14px; color: #000;">(Our sibling site)</span></p>
    </div></td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td colspan="3" style="font-size: 18px; color: #036;"><p style="font-size: 14px; color: #000; text-align: center;">We also manufacture<strong> <a href="images/m_paper_supplies.html">blank, pre perforated paper</a></strong> for all of our software.</p>
    <p style="font-size: 14px; color: #000; text-align: center; font-weight: bold;">&#8226; <strong>door hangers    &#8226; raffle tickets</strong>   <strong>&#8226; post cards</strong>   &#8226; <strong>bookmarks</strong><span style="font-size: 12px; color: #000; text-align: left;">    &#8226; </span>bulletins</p></td>
    <td> </td>
    </tr>
    &gt;
    </table>
    </div>

  • "Roll over" links

    I want all my links to be black at all times except when I
    roll over them, then I want them to be white,
    I have changed "roll over" links to white in "page
    properties", this works fine. But as soon as I change "visited
    links" to a different color than standard the roll over links
    won´t turn white anymore.
    Is there a way to fix this ??

    "ulfb?ge" <[email protected]> wrote in
    message
    news:gglvi7$mnm$[email protected]..
    >I want all my links to be black at all times except when
    I roll over them,
    >then
    > I want them to be white,
    >
    > I have changed "roll over" links to white in "page
    properties", this works
    > fine. But as soon as I change "visited links" to a
    different color than
    > standard the roll over links won´t turn white
    anymore.
    That means your rules are in the wrong order. All other
    things being equal,
    later rules override earlier rules. If you were specifying
    all four link
    states, you would do them in this order:
    link
    visited
    hover
    active
    If you're doing things via DW's tabs and not looking at the
    CSS code,
    specify visited rules before specifying hover rules.
    Have you worked directly with CSS at all? You need to find
    your a:visited
    code and move it.
    You need to put this:
    a:visited {
    [your rules]
    above this:
    a:hover {
    [your rules]
    Be sure to cut and paste the entire rule, including the
    closing curly
    brackets.
    Tim G.
    http://www.pactumweb.com
    http://www.shortordersite.com

  • Can I get rid of the underlined hyperlink and just have roll-over links?

    In iWeb 2009, can I get rid of the underlined hyperlink and just have roll-over links?

    You have to put them on the server where you are publishing your site to. Where are you hosting your site? If it's a MobileMe account then you have two options:
    1 - put the photos in a folder, name it "Pics" and put that folder in your iDisk/Pictures folder. Then use the following URL: http://homepage.mac.com/YourMMe_Account_Name/.Pictures/Pic/FileName (don't forget the period before Pictures).
    2 - put the "Pics" folder with image files in your iDisk/Web/Sites folder and use the following URL: http://web.me.com/YourMMe_Account_Name/FileName.
    If you're hosting on a 3rd party server it would depend on if you're using a domain name or not. I'm not familiar with 3rd party servers so Wyodor, Ethmoid or someone that is will need to point the way.

  • Why do my finder links expand at the bottom of the screen when I roll over them?

    I turned my computer back on and now my finder buttons on my bottom menu bar (where iTunes, safari etc. is) expand to enlargen each app when I roll over them. How did this happen? How do I stop it?
    Thanks
    Lucas

    Lucas,
    Open System Preferences>Dock...and make the appropriate selections to match your Dock preferences.

  • 1) Drop Down Menu 2) Roll Over Images & 3)

    Does anyone know away to make these things possible on iWeb (or if it is not even possible)
    1)
    I'd like to have a drop down menu so that my sites are not so cluttered.
    Here is an example:
    http://www.drsteinhealing.com/doctor/chiropractor/2L/Encino/homepage.htm
    2)
    I have seen rollover images in flash, but I hear that it is possible without flash and I think it would be great to have some pictures as such for the menu. I would think this would be possible because right now there is a rollover color change to words that are links if you want it to change colors... so:
    a) is flash possible on iWeb
    b) even if it is not: is there a way to have rollover images and
    c) can there be roll over images that are also links?
    Here is an example:
    http://planetrobyn.com/ (the pictures go from black and white to color and then they are also the menu)
    I'm learning so it would be great to see if these things are possible. Thank you.

    See these menus.The menus are HTML and CSS only.
    http://www.wyodor.net/Demo/iWebeend.html
    http://www.wyodor.net/_Demo/tmf/Duckmenu.html
    The first menu has the menu hardcode in the published webpage.
    Check the source to see how it's done.
    The second menu has a textbox at the top of the page. A JavaScript in the HTML Snippet finds that textbox and place the menu in it.
    This is pasted in the HTML Snippet :
    <script src="../../../duckmenu/duckmenu.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    elem = parent.document.getElementById('menu00').className = '';
    elem = parent.document.getElementById('menu01').className = 'selected';
    elem = parent.document.getElementById('menu02').className = '';
    elem = parent.document.getElementById('menu03').className = '';
    elem = parent.document.getElementById('menu04').className = '';
    elem = parent.document.getElementById('menu05').className = '';
    // -->
    </script>
    This JavaScript places the menu in the textbox :
    http://www.wyodor.net/_Demo/duckmenu/duckmenu.js
    The menu at drsteinhealing is HTML/CSS only too. So if you like it, grab the code + stylesheet and use it.

  • Roll over balloons in eBay searches not poping up w/ Safari 2.0.4

    Is there a setting or a technique to once again allow roll over balloons to pop up on eBay search listings? I'm referring to the "Enlarge" roll over link in the Gallery picture of search results. This is a "paid for" option that some sellers use.
    I do not have "Block Pop-up Windows" checked off in the Security Preference window.
    Firefox still allows this, but on both a Powerbook G4 and a iMac Dual Core using Safari Version 2.0.4 (419.3) this feature is no longer working for me. (It had worked in Safari until three days ago...could I have inadvertaently changed something?)
    For an example of a roll over balloon try searching eBay for an item of interest, and then scan down the resulting list. Typically a few items in large search results will have the "Enlarge" roll over below the gallery picture of an item being sold.
    24" iMac 2.16 Dual Core   Mac OS X (10.4.8)   Also, Powerbook 17" G4 & Powerbook G3

    Thanks again.
    BTW... I just received this from eBay in regard to my questioning them about this problem. As you said, they seem to be disregarding Safari.
    Dear eBay Member,
    Thank you for writing eBay in regard to the problem you are experiencing
    while trying to list your item using the Safari browser.
    If you are using OS X 10.2.x or higher, I would like to suggest using
    the Firefox browser. This browser seems to be the most compatible format
    for Macintosh users for eBay Picture Services.
    If you don't already have this browser installed on your computer,
    please visit the following page to download the Firefox browser:
    http://www.mozilla.org/products/firefox/all
    Once the page loads, please select which language you would like to
    download, and click on the link under the Mac OS X column.
    If you are using OS X 10.2.8 or older, I would then recommend using the
    Netscape browser. If you don't have this browser installed on your
    computer, please visit the following page:
    http://browser.netscape.com/ns8/download/archive72x.jsp
    Thank you for being a valuable member of the eBay community. Have an
    enjoyable time shopping and selling on eBay!
    Sincerely,
    Adam
    eBay Customer Support
    Powerbook 17" G4 & 24" iMac 2.16 Dual Core   Mac OS X (10.4.8)   Also, Powerbook G3 250 / OS 9

  • Grey Boxes when rolling over type in Illustrator CS5.5

    This is driving me insane. I have to have a solution as this is a work computer and I'm a designer who has deadlines to meet.
    Whenever I roll over, select, move or try to edit some type elements in Illustrator, the preview of the type flicks into grey boxes (see below).
    There's no cursor and I can't see what I'm typing nor can I be precise with the text placement.
    What is the problem and how do I fix it?

    By dock do you mean the Swatches panel? Have you tried the Delete Unused Panel Items action from the Action panel. They can also be in Symbols or Brushes but if you run the action it will delete them in order so that the color swatches are deleted last and if they were in a Symbol, Graphic Stlye or Brush with the original gone they should delete. Also make sure that everything is visible and unlocked.

  • How do I fade in a roll over image

    Hi,
    I have a roll over text/png to link on my home page that I would like to fade in.
    I saw something on the net and tried it and it didn't work.
    Any thoughts?  I realize these won't CSS work on all browsers. Should I go to Java?
    My home page: www.adjacentdimensionsmedia.com
    HTML:
    <div class="clearovalfortree">
    <a href="portfolio.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image10','','images/treewithtextversion3.png',1)" class="opacity" >
    <img src="clearovalfortree.png" alt="text for tree2" width="800" height="600" id="Image10"></a></div>
    CSS:
    img.opacity {
      opacity: 0.5;
      filter: alpha(opacity=50);
      -webkit-transition: opacity 1s linear;
    img.opacity:hover {
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transition: opacity 1s linear;
    Paul

    All you need to do is place the images on top of each other and change the opacity of the top image on hover as in
    <!doctype html>
    <html>
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Untitled Document</title>
    <style>
    #test {
        width: 800px;
      position: relative;
      margin: auto;
    #test img {
        width: 800px;
      position: absolute;
      left: 0;
      -webkit-transition: opacity 1s ease-in-out;
      -moz-transition: opacity 1s ease-in-out;
      -o-transition: opacity 1s ease-in-out;
      transition: opacity 1s ease-in-out;
    #test img.top:hover {
      opacity: 0;
    </style>
    </head>
    <body>
    <div id="test">
        <img class="bottom" src="http://www.adjacentdimensionsmedia.com/images/treewithtextversion3.png" alt="">
        <img class="top" src="http://www.adjacentdimensionsmedia.com/big-tree-final1.jpg" alt="">
    </div>
    </body>
    </html>

  • I want to create a Roll Over on part of an image.

    Good day. 
    I would like to create a HTML page like this:   Cherry Hill Mall | Directory  for a Mall. 
    My plan is to create a image and then trace the specific store like a hotspot and then link a roll over to it.  But I'm not sure if its possible.  Is there perhaps a better way of doing this. 
    Kind regards
    Joleen

    I agree with Murray's suggestion about maphighlight.  You'll also need some stylish tooltips for the detail boxes.
    Tooltip | jQuery UI
    http://www.1stwebdesigner.com/css/stylish-jquery-tooltip-plugins-webdesign/
    Nancy O.

Maybe you are looking for