Dhamu
Dhamu

Reputation: 127

How to change panel-body background-color in bootstrap?

I am creating a webpage using twitter bootstrap, here i wanna change panel-body background-color form white to light-pink, but i haven't any idea that how it will be done? So ..... help me Thank You

Upvotes: 12

Views: 54449

Answers (1)

samtodd
samtodd

Reputation: 539

The CSS being as follows (as an example) should work fine. If not then you'll need to show your code.

.panel-body {
background:#FFCCFF;}

Upvotes: 35

Related Questions