Tab Color Override

Home Forums Classic DFFS Tab Color Override

Viewing 1 reply thread
  • Author
    Posts
    • #16614
      jShah
      Participant

        Hi,

        I’m having an issue and cant seem to figure out. I have set the ‘tab color override’ property to a color then save it. When I go to my form I see my color change but when I click on that tab (so its active) the color changes to default blue color.

        How do I make tab color consistent with my color?

      • #16626
        Alexander Bautz
        Keymaster

          Hi,
          The style for “tabSelected” will override it. You can however override the color for “tabSelected” like this:

          ul.tabRowLast li.tabSelected a{
              background-color:green!important;
          }

          If you want to override the “selected tab color” for individual tabs you can use this code:

          #dffs_tab_2.tabSelected a{
              background-color:red!important;
          }
          #dffs_tab_3.tabSelected a{
              background-color:orange!important;
          }

          2 and 3 are the index from left.

          Hope this helps you on the way,
          Alexander

          • #16629
            jShah
            Participant

              Great thank you!

        Viewing 1 reply thread
        • You must be logged in to reply to this topic.