• Resolved pauhana

    (@pauhana)


    Hey. This wordpress plugin, which works great, but I noticed that the links I place within glossary entries get washed out due to the fact that my default link style has been set to a dark color (#222). Can someone tell me what selector to use to modify just the style for the links in the glossary popups? (Or better yet, how to inspect the contents of those popup boxes?) Thanks in advance…

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author CreativeMindsSolutions

    (@creativemindssolutions)

    Please share a link to a page with links coming from the plugin

    Thread Starter pauhana

    (@pauhana)

    Sorry, I’m developing on a local machine, so no shareable public link. But here’s a link showing what I’m talking about, which is
    anchor text which is too dark against the background

    Thread Starter pauhana

    (@pauhana)

    Ended up adding a class glossarySubLink to those internal links, and styling with the following:

    #ttcont a.glossarySubLink,
    #ttcont a.glossarySubLink:hover,
    #ttcont a.glossarySubLink:focus,
    #ttcont a.glossarySubLink:active {
    	/* Keep links white in hover (popup) tip text... */
    	color: white !important;
    }

    Popup content now looks much better…

    Alex Furr

    (@alexfurr)

    Hi I’m having exactly the same problem but the CSS above didn’t seem to work for me.
    Does the developer have any other suggestions?

    I’m finding it tricky to target the tooltip a tag

    Alex

    Plugin Author CreativeMindsSolutions

    (@creativemindssolutions)

    Hi Alex,

    Please try this:

    #tt #ttcont a,
    #tt #ttcont a:hover,
    #tt #ttcont a:focus,
    #tt #ttcont a:active {
    /* Keep links white in hover (popup) tip text… */
    color: white !important;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Styling links in glossary popup tips’ is closed to new replies.