This topic has 2 replies, 2 voices, and was last updated 12 years, 7 months ago by Daniel Arnold.
Viewing 3 posts - 1 through 3 (of 3 total)
Hi there,
How can I change the background color for Tabs? It’s white now, can I make it black or even transparent like the overlay?
In white and transs-white it fits, but in dark is not so eye catching…
Take a look: http://www.djdaniel.ro/tabs/
Thank you
You can use rgba value to display in transparent.
.tab_content {
background-color: rgba(0, 0, 0, 0.8);
border: 1px solid #000000;
display: none;
margin-top: -1px;
overflow: hidden;
padding: 15px;
}
Here is the link which will help you out. http://www.w3schools.com/cssref/css_colors_legal.asp
Thank you very much, it works.
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.