My NavTab Arrows Have Disappeared

Zovator

Member
Capture.webp
As you can see, I have no arrows next to my tabs, when you hover over the spot where they would be, the popup shows up, but I would like to get them back so people know where to hover. I don't know why they disappeared, but I can't seem to find a way to fix them. Assistance would be appreciated.

~Thanks.
 
Not even sure this will work but worth a try. Add the following to extra.css

Code:
.navTabs .navTab.PopupClosed:hover .SplitCtrl {
    background: url("styles/default/xenforo/xenforo-ui-sprite.png") no-repeat scroll -128px 5px transparent;
}
 
Could you possibly post the contents of your extra.css template in here. Perhaps jake might see what the problem is.
Code:
.navTabs .navTab.PopupClosed .navLink
{
    color: black;
        text-shadow: none;
        text-decoration: none;
}
 
.navTabs .navTab.PopupClosed .navLink:hover
{
    color: grey;
        text-shadow: none;
        text-decoration: none;
}
 
#ctrl_message_html_fontselect
{
        display: none!important;
}
 
.secondaryBar {
    background-color: transparent;
}
 
.navTabs .navTab.selected .navLink
{
    background: #393939 repeat-x top;
    color: @lightTextColor;
}
 
.navTabs .navTab.selected .tabLinks a {
    color: black;
}
 
.navTabs .navTab.selected .tabLinks a:hover {
    text-shadow: none;
}
 
.secondaryBar {
    border-bottom: none;
}
 
#QuickSearch #QuickSearchQuery.textCtrl {
    background: url('@imagePath/xenforo/gradients/search-bg.png') top repeat-x @textCtrlBackground;
    border: 1px solid #393939;
 
}
 
.nodeList .level_2 .nodeTitle a { color: black !important;}
.nodeList .level_2 .unread .nodeTitle a { color: #4D4D4D!important; }
 
.sidebar .primaryContent, .sidebar .secondaryContent {
border-radius: 0px !important;
}
 
.sectionMain {
border-radius: 0px !important;
}
 
 
.forum_list .titleBar {
display: none;
}
 
.EWRporta_Portal .titleBar {
display: none;
}
 
.message .messageMeta a {
color: grey;
}
 
.navTabs .navTab.selected .blockLinksList .ul .li .a {
color: grey;
}
 
.content {
border-radius: 0px;
}
 
::selection {
background: #393939;
color: white;
}
::-moz-selection {
background: #393939;
color: white;
}
 
.navTabs .navTab.PopupClosed:hover .SplitCtrl {
    background: url("styles/default/xenforo/xenforo-ui-sprite.png") no-repeat scroll -128px 5px transparent;
}
 
Top Bottom