Change Rounded Corners to Boxed

Discussion in 'ColorWay WordPress Theme' started by jonathonschultz, Jan 23, 2014.

  1. jonathonschultz

    jonathonschultz New Member

    Joined:
    May 2, 2012
    Messages:
    2
    Likes Received:
    0
    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.

    corners1.png
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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.
     
  3. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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
     
  4. jonathonschultz

    jonathonschultz New Member

    Joined:
    May 2, 2012
    Messages:
    2
    Likes Received:
    0
    Awesome! It worked!

    Thanks!
     

Share This Page