Forum link: http://polishsoccer.com/
Thanks for any help!
Code: Select all
.headerbar {
border-radius: 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;
}
#page-header .navbar {
border-radius: 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 10px 10px;
}
WOW! What an easy way to do it. Thanks a bunch!Christian 2.0 wrote:Easiest done using CSS3.
Place the following code at the bottom of your colours.css file:
Code: Select all
.headerbar { border-radius: 10px 10px 0px 0px; -moz-border-radius: 10px 10px 0px 0px; -webkit-border-radius: 10px 10px 0px 0px; } #page-header .navbar { border-radius: 0px 0px 10px 10px; -moz-border-radius: 0px 0px 10px 10px; -webkit-border-radius: 0px 0px 10px 10px; }
Code: Select all
.navbar {
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
That worked great. Thank you!Christian 2.0 wrote:Sure![]()
Above the code you just added, add this:Code: Select all
.navbar { border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; }