Switching up the color scheme of my Bootstrap3 tabs located on the left side of the

I'm struggling to change the color of my tabs in Bootstrap 3. No matter what I try, my inactive tabs remain white and nothing seems to override it.

I found a suggestion on Stack Overflow to align my tabs to the left since it's no longer natively supported. However, this solution is preventing me from changing the tab colors in any state.

This is the code I'm using:

<div class="container">
  <div class="normal">
    <h2 style="text-align: center;">PRODUCTS + SERVICES</h2>
      <div class="tabbable tabs-left">
        <ul id="myTab" class="nav nav-tabs color">
          <li class="active"><a href="#data" data-toggle="tab">DATA MANAGEMENT<br>
            + ANALYTICS</a></li>
          <li><a href="#software" data-toggle="tab">CARE MANAGEMENT<br>SOFTWARE</a></li>
          <li><a href="#callcenter" data-toggle="tab">CARE<br>COORDINATION<br>+ NURSING<br>CALL CENTER</a></li>
          <li><a href="#financing" data-toggle="tab">FINANCING,<br>RISK POOLING<br>+ REINSURANCE</a></li>
          <li><a href="#contracting" data-toggle="tab">CONTRACTING</a></li>
          <li><a href="#admin" data-toggle="tab">ADMINISTRATION</a></li>
        </ul>
        <div id="myTabContent" class="tab-content">

          <div class="tab-pane fade in active" id="data">
            <p>TITLE</p>
        <p>copy copy</p>
          </div>

          <div class="tab-pane fade" id="software">
            <p>copy copy</p>
          </div>

          <div class="tab-pane fade" id="callcenter">
            <p>copy copy</p>
          </div>

          <div class="tab-pane fade" id="financing">
            <p>copy copy</p>
          </div>

          <div class="tab-pane fade" id="contracting">
            <p>copy copy</p>
          </div>

          <div class="tab-pane fade" id="admin">
            <p>copy copy</p> 
          </div>

        </div>

      </div>         <!--end of TABS-->

  </div>  <!--end of normal-->
</div>  

The CSS below shows everything I've attempted so far:

.tabs-left {
  .nav-tabs {
    border-bottom: 0;
  }

.tab-content > .tab-pane,{
  display: none;
}

.tab-content > .active,{
  display: block;
}

.tabs-left, .tabs-right
  > .nav-tabs > li {
    float: none;
  }
.tabs-left, .tabs-right
  > .nav-tabs > li> a {
      min-width: 74px;
      margin-right: 0;
      margin-bottom: 3px;
    }

.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd;
}

> li > a, a:hover, a:focus {
    margin-right: -1px;
    -webkit-border-radius: 4px 0 0 4px;
       -moz-border-radius: 4px 0...

If you have any suggestions or solutions, please let me know as I am currently stuck. Thank you!

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Concealing all page content, the drop-down navigation menu hides everything

I recently designed a DropDown navigation menu using CSS. However, I noticed that when I click on it, the page contents disappear entirely. I would like to modify this behavior so that instead of hiding the content, the dropdown menu either pushes the page ...

What could be causing scrollTo to function in my ClickListener but not in AfterViewInit?

I was pondering about why the code snippet below is functioning properly: scroll(){ window.scrollTo(0, this.ypos); // executes without any issues } And in my html.component: <button (click)="scroll()">Scroll</button> but the cod ...

Responsive carousel images have a blurred effect

https://i.sstatic.net/hmKhW.jpg When attempting to make the carousel images responsive, they appear blurred as the screen resolution decreases. The alignment is correct, but the image quality is not maintained. Bootstrap is being used for this. For refer ...

Text not aligned with Line Height

I'm currently working on centering two spans horizontally within a 150px div. My initial thought was to set the line-height of each span to 150px, but for some reason, the text isn't aligning properly using this approach. Below is the code I hav ...

JavaScript does not interact with HTML content that has been loaded through jQuery AJAX requests

I'm currently working on developing a form filled with ajax requests, but I've encountered an issue where my javascript isn't interacting with the HTML content that was loaded through an ajax call to my server. ---template---- <form id=" ...

PHP Session-Based Language Toggle

I have implemented a simple session switch on my website to make it bilingual. However, there is a flaw - whenever the user switches to the other language, they are redirected back to the index page. I am looking for a solution that allows the user to stay ...

What are Google's thoughts on links that lack text but only have a background?

Here is an example: <a href="/" id="logo"></a> Alternatively, should I do this and adjust the font-size to zero: <a href="/" id="logo">Home</a> Update: It seems like nobody understands my question. Let me also share some CSS cod ...

Clear the styling of a bootstrap table to remove any highlighting

Check out an example with a table here I am looking to eliminate the highlighting from a row when it is clicked on. Currently, when hovering over a row, the background becomes grey. I want the ability to remove the grey background by clicking on the row ...

What is the best way to bind data to a textarea component and keep it updated?

I started using VueJS just a week ago for a new project. During this time, I have successfully created two components: * Account.vue (Parent) <!--This snippet is just a small part of the code--> <e-textarea title="Additional Information" ...

challenge with filling and overflowing in Microsoft Edge

Here is a snippet of generic CSS (SCSS) style for flex: .flex { display: flex; &.v { flex-direction: column; } &.h { flex-direction: row; } > * { flex: 0 0 auto; } > .fill { flex: 1 1 auto; } &am ...

Is it possible for the Chrome mobile camera to take up the full screen size on

Currently, I am using the code below to access the camera and display the stream. The width of the element is 100%, but the height seems to be around 70%. Is there a better way to make it fill the entire screen? HTML <video autoplay class="screen"> ...

I'm struggling to get the checkbox to transmit correctly. Every time I hit submit, it consistently shows as unchecked in the database

My code aims to update the database based on checkbox information. When unchecked and submitted, or when checked and submitted, the value is set to zero in the database. In the 'users' database table, the allow_email field is represented as an i ...

Using Jquery to allow users to dynamically add <a href> links to localstorage

In the context of a work project, there is a bookmark page with internal links already set up. However, I am looking to allow users to add custom bookmarks with their own URLs dynamically and save them via local storage. This could potentially include an i ...

Creating a dynamic background using a blend of two hues in CSS

Is there a way to stack two colors on top of each other using just one div element, or even better, achieve the same effect with just one color that is a blend of the two? I currently have two divs superimposed, with the top one at 60% opacity. I've ...

Hovering in Javascript

Imagine I have the following code snippet: <div class="class1"> ... random content </div> I want to use JavaScript so that when I hover over that div, a CSS attribute is added: background-color:#ffffe0; border:1px solid #bfbfbf; This is a ...

Here's a unique rewrite: "Learn how to manipulate the CSS class of a textarea element (specifically in NicEdit) by utilizing the addClass

I am currently validating a textarea using the NicEdit plugin. var getContent = nicEditors.findEditor("SubSliderDescription").getContent(); bValid = bValid && checkBlankTextArea(getContent, "SubSliderDescription") function checkBlankTextArea(o, ...

Concealing a Div element without the use of Jquery or JavaScript

I have an Upper and Lower div in my HTML code. I am trying to display the Lower div only if the Upper div is present, otherwise hide it. Is there a way to achieve this using CSS without using Jquery or Javascript? Note: No modifications should be made t ...

What could be wrong with my hover command not functioning properly?

I've been attempting to create a dropdown menu using some basic CSS, but I can't figure out why the dropdown isn't functioning. I've tried everything I can think of. Below, I've included the CSS and HTML code for reference: < ...

Leveraging CSS Modules alongside external packages

Below is the important section from my webpack.config.js file: module: { loaders: [ { test: /\.css$/, exclude: /node_modules/, loaders: [ "style-loader?sourceMap", "css-l ...

Tips for setting a select list to have no elements pre-selected when using the jQuery bsmSelect plugin

Looking for a way to have the jQuery bsmSelect plugin start with nothing selected by default? This handy plugin makes it easy for users to choose multiple options from a dropdown list, but you need it to begin blank. Any suggestions on how to achieve this? ...