rounded-corners

Nivo Slider with Round Corners - Need to remove white corners!

I love the NIVO SLIDER, but I want to use it with round corners with CSS3. I can't get rid of the white corners. Here is the link: link text Is there a better slider that will work with round corners or is there a way to remove or hide the white corners? ...

CSS - Optimizing rounded corners for speed

I'm trying to optimize my site for speed. I used images for the rounded corners before but now I've changed them with border-radius and -moz-border-radius css rules. Which way is the best for speed? I used to think that css rules are faster but I've seen a lot of sites talking about css sprites and I'm a bit confused now. Oh and I don't ...

IE 7 CSS Issues

Okay, I'll be the first to admit that i'm quite terrible when it comes to css, but I try... :D I have this JS Function which I use to create rounded corners using images, instead of the standard div in div in div way. I know there are better ways, but this is how i've done it: function applyHorizontalImageCornersSpecific(div, left, midd...

CSS 3 PIE: Not working inside an absolutely positioned (popup) element? Shifts on mouseover?

I am using the CSS 3 PIE include so that I can have rounded borders on my popup in IE. However, in IE, the popup is not rounded on the pageload, but when I mouse over it, it shifts to the top-left corner of the container, which is positioned absolutely, and THERE it has rounded borders. Here is the HTML: <div class="popupWrapper" i...

Round corners using custom images

I'm trying to create a box with round corners using images. I know how to use CSS3 but I need to use images as I have some custom made corners with shadow and transparency. The result I need: I have divided the box into several images: I know there is plenty of info about this topic, but I have been working with this for the las...

AJAX modal shows white square corners over JQUERY rounded corners in IE7???

Using jquery rounded corners to make a white rounded area in which the content of my page is displayed. I also have an AJAX UpdateProgress control tied to an Update Panel on my page. When the update progress control is invoked, the background of the bottom two corners of the div rounded by JQUERY are showing up as white on top of the mo...

CSS Rounded Corners Not Working - Why Not?

<div id="main-solutions"> <div id="main-solutions-top-left"></div> <div id="main-solutions-top-right"></div> <div id="main-solutions-body"> blah blah blah </div> </div> css #main-solutions { } #main-solutions-top-left { position: absolute; top: 0px; left: 0px; background: url('../images/Top-Left-Gra...

Simplest way to implement slightly-rounded corners like on this example site?

I have to implement a tab control identical in terms of style to what can be seen here: http://funds.ft.com This is the example I've come up with so far: http://jsfiddle.net/MZUQK/ The biggest issue I'm facing is that the first one has 'rounded' corners that was implemented automatically by the ASP.NET AJAX used to develop the site. ...

[qt] Non-pixelized rounded corner for top-level window

Hi, I want to set rounded corners on a QDialog. Since it is a top-level window, border-radius doesn't work, so I've to do this : QRegion EnterPinDialog::roundedRect(const QRect& rect, int r) { QRegion region; // middle and borders region += rect.adjusted(r, 0, -r, 0); region += rect.adjusted(0, r, 0, -r); // top l...

Text and box drop shadow, rounded corners and gradients with jQuery official plugin

Hi! Is there any official jQuery plugin (like jQuery UI) that allows those effects in all browsers? Or at least IE8, Chome, FF and Opera. I don't want user plugins as those often lack support in the long term, are uncompatible with one another or lack consistent quality and optimization. I saw some "Overlay and Shadow Classes" in the j...

Server side Charting Library that is design focused

I have been looking for a good server side graphing / charting library that has a lot of design options. Most seem to be very difficult to customize the specific way we are looking to. I don't mind if it is python, php, java, etc... I just need it to generate server side and output an image to be embedded on a pdf. Specifically I need...

colorWithPatternImage and setCornerRadius issue

Hello I'd like to achieve at the same time rounded corners and a background composed by tiling a little png (OPERATOR_VIEW_BACKGROUND_IMAGE). My main goal is to allow a designer to fill the background of a View by inserting the right image in the project resources. [triggerView setFrame:CGRectMake(0, 0, ICONS_WIDTH, iconFrameHeight)]; [...

grouping texts plus images + round edges in android.

i was requested to make in android a view that groups several items like checkboxes or text views in vertical rows, separated by transparent dividers while the background is with a certain alpha level and the edges are round. I thought of two solutions and i hope for some feedback on good\bad or other solutions if you got'em. just use...

firefox img rounded borders without using div background

It's a known bug that -moz-border-radius doesnt work on images in firefox. What's a way to get this functionality without resorting to putting the image as a background on a rounded div? ...

Using Fancybox - Opening an iframe, need rounded corners in IE.

Hi, Using CSS I can get the iframe popup to have rounded corners in all browsers besides IE. I have tried to use a few jQuery plugins for rounded corners, and applying them to #fancybox-outer with no success. Does anyone please have a solution for rounded corners and fancybox (iframe) using IE. A demo would even be better! Thanks in a...