I am currently making a website here. And to the right is a postcode search div. The top corner of that needs to be rounded.

I am using images to round the corners. I do not want to use another method unless it fully supports all browsers, up until IE7.

I have already done this on the navigation (to the left. only top right and bottom left corners). But I cannot seem to get it to work for the top left corner. Please help. This may be a silly little mistake I have made.

link|improve this question

Your postcode box is on the right. – Sparky672 Jun 10 '11 at 17:32
Images are the most reliable option for all browsers. CSS3 rounded corners will only work in browsers that support that part of CSS3. I know they won't work in IE 6, 7, 8 which is very roughly 45% of the Internet. – Sparky672 Jun 10 '11 at 17:35
feedback

4 Answers

up vote 3 down vote accepted

If the "postcode search div" is fixed width and height (as it appears to be), the simplest solution would just be to do the entire thing as an image, and set that as the background:

enter image description here

(yes, the images are the correct size and colour)

link|improve this answer
Oops, I forgot to enable "snap to pixels", so the left edge of that image is a bit blurry. – thirtydot Jun 10 '11 at 17:41
It's also worth pointing out CSS3 PIE as a solution - but that can only do all the corners: http://css3pie.com/documentation/known-issues/#shorthand – thirtydot Jun 10 '11 at 17:44
thanks a lot for your help! Much appreciated! Could you provide me with the dimensions you used? So I an reproduce it with snap to pixels included. Thanks :) – hart1994 Jun 10 '11 at 18:58
@hart1994: My images ended up being 226x131 (thanks to not using pixel snapping), but you should use 225x130. – thirtydot Jun 10 '11 at 19:04
Thanks a lot! Great help. :) – hart1994 Jun 10 '11 at 19:55
feedback

The problem is that your background color is covering your image. If you remove the background-color property, you will see the corner image.

Take your image http://molossi.psm2.co.uk/assets/images/li-bg-tl.png and add in the grey background with it. Set the width and height of the entire grey background element to 225x120 or whatever you want and you will be good to go. Basically move from it being just the corner image piece to the full image.

If you don't want to do it this way then take your corner image and make it 225px in length with the grey extending out all the way.

link|improve this answer
feedback

There are two methods for creating round corners without using border-radius (CSS3) and without using images:

  1. Use four small divs of height: 1px and progressively increasing widths that create the round corner illusion. This is probably the better option. For a code sample, see the following site: http://webdesign.about.com/od/css/a/aa072406.htm

  2. Use an HTA file and browser hacks. I've never tried this personally. For code samples and techniques, see the following site http://jonraasch.com/blog/css-rounded-corners-in-all-browsers

link|improve this answer
feedback

For older browser support using images is the best and probably only option. If you don't mind lower levels of browser support CSS3 Rounded Corners (in the CSS3 Boarders page of W3Schools) may have your answer.

I hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.