• Hi all,

    style.css
    ….
    ….
    .entry-title a:hover,
    .entry-title a:focus,
    .entry-title a:active {
    color: #1982d1;
    }

    The line is black in color. Moving the cursor on the line it turns to blue color.

    How to change the line to red color before activating it? Thanks

    Rgds
    satimis

Viewing 6 replies - 1 through 6 (of 6 total)
  • .entry-title {
       color:#FF0000;
    }

    Add above to style.cssof your childtheme, above the code in your thread.

    Thread Starter satimis

    (@satimis)

    Thanks. Your advice works for me.

    A further question
    adding;
    text-decoration: blink;

    The line blinks. Is there any way displaying the line alphabet by alphabet.

    satimis

    Not using CSS. You need JavaScript for that sort of thing.

    I don’t know what you mean by

    Is there any way displaying the line alphabet by alphabet.

    . Can you eleborate and give an example?

    Thread Starter satimis

    (@satimis)

    Sorry for not explaining clearer on my late posting. Example:

    The sentence “It is a beautiful world” would popup/blink/display at the same time. It’ll display character by character as;

    I
    It
    It i
    It is
    It is a
    …..
    It is a beautiful world (finally)

    The sentence will remain on the screen for a duration of x seconds and repeat.

    satimis

    As mentioned above, you will need jQuery/Javascript for this.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to change the static line color’ is closed to new replies.