Topic Resolution: Resolved
  • Closed
  • Johnny Good
    Spectator
    24.04.2015 at 17:33 #16818

    Hi,

    I’m trying to make content boxes round and in CSS
    I have this:
    .XXXX {
    margin:0 0 25px;
    overflow:hidden;
    padding:20px;
    background-color:#6BD5F1;
    border:1px solid #afcde3;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    }

    But how do I specify all boxes? what do I put under X?

    Thanks

    Roman
    Spectator
    Posts: 3147
    27.04.2015 at 20:04 #17008

    this must be in Custom CSS:

    .widget-content {
    margin:0 0 25px;
    overflow:hidden;
    padding:0 15px 20px 15px;
    border:1px solid #afcde3;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    }
    .widget-title {
    padding-top:20px;
    }
    .widget-title-background {
    -webkit-border-radius: 20px 20px 0 0;
    border-radius: 20px 20px 0 0;
    margin-top:11px;
    }

    Johnny Good
    Spectator
    Posts: 90
    27.04.2015 at 20:24 #17009

    Roman, you are The CSS master!
    Now it works across all browsers including mobile!

    Roman
    Spectator
    Posts: 3147
    27.04.2015 at 20:40 #17010

    marking resolved 🙂