container-header

Tooltips & Popovers

container-breadcrumb
Settings
Fixed sidebar
Fixed footer
Fixed top navbar
Collapse sidebar
Boxed
Background
Default
Dark
Light
Themes
Default
White Light
Blue Navy
Blue Sky
Lime Lemon
Star Dust
Green Tea
Orange Round
Yellow Sun
Deep Purple
Yummy Chocolate
Dark Night
Soft Green
Wheel Red

Tooltips

Tooltips Default
Just add ...data-toggle="tooltip">and ..data-original-title="Tooltip left">to the button element.
Tooltips Theme Colors

CSS Classes: .theme-tooltip

Change the color theme to see how the tooltip changes:


Tooltips Bootstrap Colors

CSS Classes: .default-tooltip, .primary-tooltip, .info-tooltip, .success-tooltip, .warning-tooltip, .danger-tooltipor .inverse-tooltip.


Popovers

Popovers Default- Show Popover on click
Just add ...data-toggle="popover">and ...data-content="Lorem ipsum dolor sit amet">to the popover button.
Popovers Sizes

CSS Classes: .popover-sm


Popovers Hover- Show Popover on hover
Just add ...data-trigger="hover">to the popover button.
Popovers Theme Colors

CSS Classes: .theme-popover

Change the color theme to see how the popover changes:


Popovers Bootstrap Colors

Only works without ...data-container="body">.

CSS Classes: .default-popover, .primary-popover, .info-popover, .success-popover, .warning-popover, .danger-popoveror .inverse-popover.


Popovers HTML Content

Popovers with HTML Content- Put some HTML code inside your Popovers
Just add ...data-html="true">to the button element.

Popover with HTML code

Just add ...title="<b>Popover HTML Example</b>- Title"and ...data-content="<div>Popover HTML Example - Content</div>"to the button element.

Popover with HTML code (JS integration)



$('#popoverHTML').popover({
html : true,
content : function() {
return $('#popoverHTMLHiddenContent').html();
},
title : function() {
return $('#popoverHTMLHiddenTitle').html();
}
});