Hovering tagline for blog title?

  • Unknown's avatar

    Can i add a HOVERING tagline to my blog title?
    (I have the free version; is this available on the $99 upgrade?)

    The blog I need help with is ahansenchronicle.wordpress.com.

    I see that i can add a tagline to the blog title, but i would like the tagline to show only when hovered over.
    (I am not a techie, so code info won’t help me.)

    Thank you!!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, the tagline cannot be made into a link with CSS. That would require editing of the theme PHP script files, and we cannot do that at WordPress.com.

    We can however, have the hover effect with CSS. You can try out and preview custom CSS before you buy as explained here. The following CSS would hide the tagline until someone hovered over it and then it would appear.

    .site-description {
        color: rgba(0, 0, 0, 0);
    }
    .site-description:hover {
        color: inherit;
    }
  • Unknown's avatar

    Thank you very much for your response!
    I will continue to work on this.
    Tnx again.

  • Unknown's avatar
  • The topic ‘Hovering tagline for blog title?’ is closed to new replies.