• Resolved wpalsansan

    (@neoworlds)


    hi! how can i style the register and login buttons with css?
    i’ve seen this classes in style-front-end.css (.wppb-user-forms .wppb-wysiwyg button and .wppb-user-forms .wppb-wysiwyg button:hover) but they don’t change anything.
    regards!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,

    The register button can be targeted like this:

    #register { background-color: red; }

    And the login button can be targeted like this:

    #wppb-submit { background-color: red; }

    To find out how to target elements, in Firefox you may just right-click and then select Inspect Element.

    Cheers,

    Thread Starter wpalsansan

    (@neoworlds)

    yep, thank you! but, how can i style the hover effect in that type of class? #register:hover don’t work

    Hi there,

    For me here it works. If I do

    #register { background-color: red; }
    #register:hover { background-color: blue; }

    then it’s red at first, and if I hover it turns to blue.

    Cheers,

    Thread Starter wpalsansan

    (@neoworlds)

    now its working
    muchas gracias!

    Glad to help! So how did you do to make it work? Maybe it helps others.

    Cheers,

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘button style’ is closed to new replies.