Custom CSS

Home Forums General discussion Custom CSS

Tagged: 

Viewing 1 reply thread
  • Author
    Posts
    • #23784
      Alex Ross
      Participant

        Hello,

        Is is possible to change the color of the tooltip icon using custom CSS? I am also having some difficulty changing the tab color of non-selected tabs. I have been able to successfully apply custom CSS to the selected tab but not the others.

        Thanks in advance for your assistance.

      • #23786
        Alexander Bautz
        Keymaster

          The tooltip image can be changed in the top of the Field tooltip tab in the DFFS backend.

          To change the tabs you can add this code to your Custom CSS:

          /* Base color */
          li.tabBase a{
              background-color:#008272!important;
              color:#ffffff!important;
          }
          /* Hover color */
          li.tabBase a:hover{
              background-color:#00B294!important;
              color:#000000!important;
          }
          /* Selected tab color */
          li.tabSelected a{
              background-color:#004b50!important;
              color:#ffffff!important;
          }

          Alexander

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