Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 917
Dhamu Avatar asked Jul 31 '14 10:07

Dhamu


People also ask

How do I change the background color in bootstrap?

We can add background color to a div by simply adding class “bg-primary”, “bg-success”, “bg-danger”, “bg-info”, and many more as shown in the following examples.

How do I make the background white in bootstrap 4?

Add a class bg-white to your html element. Then in apply the background style.


1 Answers

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;}
like image 64
samtodd Avatar answered Sep 20 '22 08:09

samtodd