• Resolved semperaye

    (@semperaye)


    Hello. I’m having trouble styling the write button with my css, do I have the right identifier? Did I mess something else up lol…I’m no pro at this 😛 Thanx!

    #gwolle_gb_write_button .submit {
    background:#3f3f3f;
    border: 2px solid transparent;
    border-radius: 5px;
    color:#FFF;
    }

    #gwolle_gb_write_button .submit:hover {
    background:#FFF;
    border: 2px solid #3f3f3f;
    border-radius: 5px;
    color:#c0c0c0
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Marcel Pol

    (@mpol)

    I would set it for the button as follows:

    #gwolle_gb_write_button input.button {
    background:#3f3f3f;
    border: 2px solid transparent;
    border-radius: 5px;
    color:#FFF;
    }
    
    #gwolle_gb_write_button input.button:hover {
    background:#FFF;
    border: 2px solid #3f3f3f;
    border-radius: 5px;
    color:#c0c0c0
    }

    If you don’t just mean the top button but also the submit button, you can target is as follows:

    #gwolle_gb_write_button input.button,
    input#gwolle_gb_submit {
    background:#3f3f3f;
    border: 2px solid transparent;
    border-radius: 5px;
    color:#FFF;
    }
    
    #gwolle_gb_write_button input.button:hover,
    input#gwolle_gb_submit:hover {
    background:#FFF;
    border: 2px solid #3f3f3f;
    border-radius: 5px;
    color:#c0c0c0
    }

    If it still doesn’t work, could you share the url? It might be that your theme is adding CSS too, and it needs to be more specific.

    Thread Starter semperaye

    (@semperaye)

    Woot! That did it perfectly thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Style buttons css question’ is closed to new replies.