Copy link to clipboard
Copied
I would like to change the background color of a container. I can change the color of a fluid container , however I only want to change the color in the container inside the fluid container.
Thanks Jon 32137
1 Correct answer
Whats the class name of the container within the fluid container?
Use some css in a seperate linked style sheet and make sure the css file comes after the link to the bootstrap.css file in the page code.
.class-name {
background-color: yellow;
}
Copy link to clipboard
Copied
Whats the class name of the container within the fluid container?
Use some css in a seperate linked style sheet and make sure the css file comes after the link to the bootstrap.css file in the page code.
.class-name {
background-color: yellow;
}
Copy link to clipboard
Copied
Thanks,
Jon 32137

