I try to get a thin border with round corners for the tip in qtip, using:

border: {width: 1, radius: 7, color: "#B8E25E"}

(Like explained here: http://craigsworks.com/projects/qtip/docs/tutorials#borders)

But the border is then getting quite thick, like 7 or something, is there a way to get a thin border with round corners?

link|improve this question
feedback

5 Answers

up vote 2 down vote accepted

I had the same problem too - it looks like qtip 1.x will not let you use a 'radius' thats less than the border width.

It looks like this is by design, and you'll have to move to qtip 2 (which isn't released yet) to get round it.

See this conversation between the developer of qtip and a user:

User: I've played a little with this, and as far as I can detect it isn't possible to use a border-radius that is greater than the border-width. If I configure a border-radius that's greater than the border-width, the border-width displayed will be the same as the radius (in stead of what I configured).

Developer: Unfortunately this is neither a bug or feature, just an side effect of the implementation. There are no plans to implement this as 1.0 releases are now discontinued, and the border engine is removed in the 2.0 releases in favour of standard border-radius properties.

link|improve this answer
feedback

From briefly glancing at that documentation it looks like the Radius is the width of the border? So therefore your border is 7, maybe change it to {width: 1, radius: 2, color: "#B8E25E"} to get a thinner border?

link|improve this answer
feedback

From looking at the source code, I found this in the docs.css file:

#content .subsection{
      border-bottom: 3px solid #F1F1F1;
      margin-bottom: 15px;
      padding: 5px 0 40px;
   }

Try doing something similar to this and see what happens. Maybe saying border: 3px solid #F1F1F1; instead.

Here's the section where I found this at: http://craigsworks.com/projects/qtip/docs/tutorials#borders

link|improve this answer
feedback

Don't forget to say what units you're using.

Try this:

border: { width: 1px, radius: 7px, color: "#B8E25E" }

link|improve this answer
Its a JS associative array, not a CSS selector – Tom J Nowell Mar 18 '11 at 10:38
feedback

Try this it will help you out

.corner { -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; }

link|improve this answer
QTip 1 doesn't use CSS for the rounded corners, precisely because Internet explorer <9 has no support. This CSS will have no effect whatsoever else he'd be using QTip 2 which relies on the border-radius css – Tom J Nowell Mar 18 '11 at 10:35
feedback

Your Answer

 
or
required, but never shown

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