Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Martin Stehle

    (@hinjiriyo)

    You can do it by using CSS. Read the notes.

    Put the following codes into the CSS file of your theme or via a Custom CSS plugin:

    to change the font to ‘Georgia:

    .rpwwt-widget ul li {
        font-familiy: Georgia;
    }

    to change the link color to red at mouseover and keyboard focus:

    .rpwwt-widget ul li a:hover,
    .rpwwt-widget ul li a:focus {
        color: red;
    }

    Thread Starter sreekanth1212

    (@sreekanth1212)

    it worked…thanks

    Thread Starter sreekanth1212

    (@sreekanth1212)

    Hi
    after saving …and logging out it is not saving what i have to do?

    I saved in plugins .css file still not saving..

    Plugin Author Martin Stehle

    (@hinjiriyo)

    You should insert the code in the the CSS file of your theme! You can find it in /wp-content/themes/{the name of the theme}, called ‘style.css’.

    There is one risk: after an upgrade of the theme the inserted code could be loss. The safest way is to use a Custom CSS plugin like “Better Custom CSS” and insert the code there. It will remain after upgrades, even after a theme change.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change font and styles’ is closed to new replies.