• Resolved chrisgeorgio

    (@chrisgeorgio)


    Hi thanks for the really useful plugin, I have a couple of questions.

    I’d like to edit the look and feel, I have managed to change the background boarder radius etc but I’d also like to change the text in the button and the fonts used. Could you let me know how I might be able to do this?

    Many thanks

Viewing 1 replies (of 1 total)
  • Plugin Author lucasbustamante

    (@lucasbustamante)

    All strings are translatable in the plugin settings.

    The font could be changed with CSS. You can either edit the plugin files directly (it won’t update anytime soon) or add something like this in functions.php:

    function vspfw_style() {
    echo ‘<style>/*Do something here*/</style>’;
    }
    add_action(‘init’, ‘vspfw_style’);

    If you want to edit the CSS in the plugin files directly (it’s just normal HTML+PHP) you can edit the file wp-content/plugins/very-simple-password/VSPFW_view.php and add your inline CSS.

Viewing 1 replies (of 1 total)
  • The topic ‘CSS’ is closed to new replies.