Using Colorway Theme How do I change the rounded corners of the website to 90-degree (right angles). website url: http://LifeCoachingAmerica.com Here is a screenshot of the website with notations.
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .container { border-radius: 0px 0px 0px 0px ! important; -webkit-border-radius: 0px 0px 0px 0px ! important; -moz-border-radius: 0px 0px 0px 0px ! important; border-radius: 0px 0px 0px 0px ! important; } .footer-navi { -webkit-border-radius: 0px 0px 0px 0px! important; -moz-border-radius: 0px 0px 0px 0px! important; border-radius: 0px 0px 0px 0px! important; } This will solve your issue.
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .container { -webkit-border-radius: inherit!important; -moz-border-radius:inherit!important; border-radius: inherit!important; } .footer-navi{ -webkit-border-radius: inherit!important; -moz-border-radius:inherit!important; border-radius: inherit!important; } This will solve your issue. Thanks & Regards Gourav Shrivastava