• beyondessex

    (@beyondessex)


    For the theme ‘Fancy’ by AZ Money, how can you make it (using CSS) so that the normal post title text is ‘0004F9’ and when you hover over it the text goes white with the text ‘box’ being ‘FE0059’

Viewing 3 replies - 1 through 3 (of 3 total)
  • randyttp

    (@randyttp)

    I would have to see that themes CSS to know what the selectors are. Or you could post a link to your site ??

    but you will be looking to change the CSS to this essentially.

    h1 {
        color: #0004F9;
    }
    h1:hover {
        color: #FE0059;
    }

    or instead of h1 it might be labeled as “a.title” for example. I’m not sure, you gotta find it in the CSS where the title color is applied, then add a similar Hover statement as I showed. Hope this points you in the right direction.

    Thread Starter beyondessex

    (@beyondessex)

    I’m only testing on a template using F12!

    https://wp-themes.com/fancy/

    esmi

    (@esmi)

    Try using Firefox with the Firebug add-on for this kind of CSS work.
    https://getfirebug.com/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Theme Fancy – Title Colous’ is closed to new replies.