Title: Style buttons css question
Last modified: July 3, 2017

---

# Style buttons css question

 *  Resolved [semperaye](https://wordpress.org/support/users/semperaye/)
 * (@semperaye)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/style-buttons-css-question/)
 * 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](https://wordpress.org/support/users/mpol/)
 * (@mpol)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/style-buttons-css-question/#post-9284719)
 * 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](https://wordpress.org/support/users/semperaye/)
 * (@semperaye)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/style-buttons-css-question/#post-9285937)
 * 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.

 * ![](https://ps.w.org/gwolle-gb/assets/icon-256x256.png?rev=1114688)
 * [Gwolle Guestbook](https://wordpress.org/plugins/gwolle-gb/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gwolle-gb/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gwolle-gb/)
 * [Active Topics](https://wordpress.org/support/plugin/gwolle-gb/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gwolle-gb/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gwolle-gb/reviews/)

## Tags

 * [buttons](https://wordpress.org/support/topic-tag/buttons/)
 * [css](https://wordpress.org/support/topic-tag/css/)

 * 2 replies
 * 2 participants
 * Last reply from: [semperaye](https://wordpress.org/support/users/semperaye/)
 * Last activity: [8 years, 11 months ago](https://wordpress.org/support/topic/style-buttons-css-question/#post-9285937)
 * Status: resolved