Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to output various colors for the tooltips (edit: from Twitter Bootstrap) but it seems I'm not quite getting it. Just changing the default color hasn't been hard, it's just a matter of changing the colors for .tooltip and its associated definitions.

However assuming I wanted to change the color for a specific tooltip within the body

<div id="users" class="row">
    <div id="photo_stack" class="span6 photo_stack">
        <img id="photo1" src="" width="400px" height="300px" alt="" rel="tooltip" data-placement="right" title="Other Color" />

A simple approach like

#users .tooltip { background-color: #somecolor; }

doesn't seem to work. I guess it's something about the DOM and I'd need to attach some sort of classes to the specific tooltips? Or am I completely off? Thanks :)

Here's a JSFiddle: http://jsfiddle.net/rZxrm/

share|improve this question

4 Answers

up vote 6 down vote accepted

Twitter bootstrap does not have this feature built in, but you could add your own functions to do this, like so:

$('#photo1').hover(function() {$('.tooltip').addClass('tooltipPhoto')}, function () {$('.tooltip').removeClass('tooltipPhoto')});​

and then you just have to define tooltipPhoto class in CSS to have a different background color.

EDIT: Updated solution:

function changeTooltipColorTo(color) {
    $('.tooltip-inner').css('background-color', color)
    $('.tooltip.top .tooltip-arrow').css('border-top-color', color);
    $('.tooltip.right .tooltip-arrow').css('border-right-color', color);
    $('.tooltip.left .tooltip-arrow').css('border-left-color', color);
    $('.tooltip.bottom .tooltip-arrow').css('border-bottom-color', color);
}

$(document).ready(function () {
    $("[rel=tooltip]").tooltip();
    $('#photo1').hover(function() {changeTooltipColorTo('#f00')});
    $('#photo2').hover(function() {changeTooltipColorTo('#0f0')});
    $('#photo3').hover(function() {changeTooltipColorTo('#00f')});
});
share|improve this answer
thanks @Miha Rekar this sounds like the way to go. Would you mind expanding on this a little? When I throw this in the footer of the document I get a "Uncaught SyntaxError: Unexpected token ILLEGAL". Also tooltip-inner holds the color info so far, .tooltipPhoto would overwrite this then? Thanks :) – Simon Sep 28 '12 at 13:01
This would be much easier if you created jsfiddle and I would show you there. – Miha Rekar Sep 28 '12 at 20:32
Ok so here's a basic JSfiddle of the set up, I'm sorry I can't get it working right now, can you work with this @Miha Rekar? Thanks sir! – Simon Sep 28 '12 at 22:25
I've edited your fiddle and also updated the answer. – Miha Rekar Sep 29 '12 at 8:44
So good, thank you @Miha Rekar! Works like a charm. – Simon Sep 29 '12 at 9:50
show 3 more comments

See Dynamically add a class to Bootstrap's 'popover' container

Her fix allows a data-class selector by modifying bootstrap.js with one line

share|improve this answer

I have found another solution for your problem (I was trying to do the same thing). Simply change the color in your main CSS stylesheet (it will override boostrap's as long as your stylesheet is listed after bootstrap in the head of your doc).

Specifically here's what you add to your main stylesheet (as an example):

.tooltip-inner {background-color: #D13127; color: #fff;}

.tooltip.top .tooltip-arrow {border-top-color: #D13127;}

share|improve this answer
this worked for me when I added !important to the css properties. – jaxvy May 8 at 7:43

how can possible rel="tooltip" get css class.

add class="tooltip"

#users .tooltip { background-color: red; }​

<img id="photo1" src="" width="400px" height="300px" alt="" class="tooltip" rel="tooltip" data-placement="right" title="Other Color" />​

see this EDIT

share|improve this answer
hey I'm using the tooltips from Bootstrap. So they get their color information from there. What I'm trying to do is overwrite that depending on where in the page the tooltip is displayed. – Simon Sep 28 '12 at 12:22
check this EDIT – user108 Sep 28 '12 at 12:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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