[ad_1]
I’m needing help customizing the buttons to have sharp, square edges instead of rounded. I’m using the explorer plan and this is my first time designing a website for a client on WordPress, I typically use SquareSpace. The plan is ‘explorer’ so I’m not sure if I’m even able to customize buttons under this plan, seems very limited for customization.
Thanks for any help or advice in advance! : )
[ad_2]
Having never used WordPress.com and only ever manually installing WordPress that I’ve downloaded from WordPress.org/installed via cPanel in my host I can’t advise. However, if you are not able to edit the button within the editor/add your own CSS, then you are basically paying to have a crippled version of WordPress!
You’ll have to pay more if you want to edit the theme – [https://wordpress.com/pricing/](https://wordpress.com/pricing/)
This is a sub for wordpress.org users. If you can’t add CSS on your.com plan, move your site to a better host, or if you can add css from the customizer, just add border-radius:0px; to the button class.
The Explorer plan offers the option to customize with CSS code. You can see how to add CSS code here – [https://wordpress.com/support/editing-css/#Access-the-CSS-Editor-(Global-Styles)](https://wordpress.com/support/editing-css/#Access-the-CSS-Editor-(Global-Styles))
I need the CSS class to provide you with the whole code, but I’ll need to see the website for that.
The best I can do is to tell you that the button class needs to have `{ border-radius: 0px; }`
The complete code would look like:
.example-class-do-not-use-it {
border-radius: 0px;
}