Hi Folks,
I have a few title bars on a website that I want to add rounded corners to the top left and top right.
However I am struggling as I am already using a background image for behind the title text so how do I easily go about putting rounded corners in,
Current CSS looks like this;
I have 4x4 pixel image repeated behind all of the text so how do I go about adding rounded corners aswell?
I have a few title bars on a website that I want to add rounded corners to the top left and top right.
However I am struggling as I am already using a background image for behind the title text so how do I easily go about putting rounded corners in,
Current CSS looks like this;
Code:
#content .top {
height: 16px;
padding: 8px 0px 6px 0px;
background: url('../image/11.png') repeat;
}
#content .top h1, .heading {
color: #FFFFFF;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
text-transform: uppercase;
text-align: center;
margin: 0px;
}
I have 4x4 pixel image repeated behind all of the text so how do I go about adding rounded corners aswell?