Widget box-rounded corners

Support Area Forums Epic Widget box-rounded corners

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question:
  • Author
    Posts
  • #8800
    Avatar photoKim Hannan
    Participant

    I would love to change up the theme a bit by having the widget with rounded corners. I was thinking (aesthetically) of having top left squared with other three rounded (maybe 10 px).

    I know there is code out there for this, but want to be sure that I drop it in in the most effective spot.

    Thanks for your ever reliable advise.

    #8803
    Bill Robbins
    Moderator

    You can do that. Here is a CSS snippet for your Custom CSS box that can make that happen for you:

    
    .widget {
    	-webkit-border-radius: 0px 10px 10px 10px;
    	border-radius: 0px 10px 10px 10px;
    }
    

    The numbers go in order from the top left corner to the right, right bottom and left bottom if you want to change any.

    Have fun,
    Bill

    #8804
    Avatar photoKim Hannan
    Participant

    Bill: This is perfect….but then I see I should have asked one other question. The Widget headers lay over the widget box…so I would need to change the top right corner on the header to be rounded. I am guessing you have a nifty coding answer in your pocket?

    Thanks!

    #8815
    Bill Robbins
    Moderator

    Good point. This will round the top right corner for you:

    
    h2.widget-title,
    h3.widget-title {
    	-webkit-border-radius: 0px 10px 0px 0px;
    	border-radius: 0px 10px 0px 0px;
    }
    
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Widget box-rounded corners’ is closed to new replies.