Divi Extended Documentation

Search for answers or browse our knowledge base.

< All Topics
Print

How to change the content border color on DP hover tab

Add the below CSS in Divi Theme options to change the border-color when hover on the tab.

.dipl_tabs_content .dipl_tabs_item:hover {
    border-color: #e9e9e9 !important;
    box-shadow: 0px 2px 0px 0px #e9e9e9 !important;
}

.dipl_tabs_item.dipl_active_tab_content  {
    border-color: #0CCFC3;
    box-shadow: 0px 2px 0px 0px #0CCFC3;
}