M Matthew Hawley Well-known member Feb 3, 2014 #1 Can't figure out how to move the navtab arrow down. I know it has to do with the splitctrl but if i do a margin-top it affects other things...
Can't figure out how to move the navtab arrow down. I know it has to do with the splitctrl but if i do a margin-top it affects other things...
Lukas W. Well-known member Feb 3, 2014 #2 try Code: .navTabs .navTab .SplitCtrl { margin-top: youmargin; } Upvote 0 Downvote
Lukas W. Well-known member Feb 3, 2014 #4 It does. If it largens your tab, just apply the same value as negative bottom-margin. Upvote 0 Downvote
Steve F Well-known member Feb 4, 2014 #5 katsulynx said: It does. If it largens your tab, just apply the same value as negative bottom-margin. Click to expand... Careful with margins in the nav, it can cause undesired results with responsive layout in the nav. Matthew Hawley said: Can't figure out how to move the navtab arrow down. I know it has to do with the splitctrl but if i do a margin-top it affects other things... Click to expand... This is from the navigation.css Adjust the 2nd value Code: .navTabs .navTab.PopupClosed:hover .SplitCtrl { /* nav_menu_gadget, height: 17px */ background: transparent url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat -128px {xen:calc '(@headerTabHeight - 17) / 2 + 1'}px; } Rich (BB code): .navTabs .navTab.PopupClosed:hover .SplitCtrl { background-position: -128px 16px; } Upvote 0 Downvote
katsulynx said: It does. If it largens your tab, just apply the same value as negative bottom-margin. Click to expand... Careful with margins in the nav, it can cause undesired results with responsive layout in the nav. Matthew Hawley said: Can't figure out how to move the navtab arrow down. I know it has to do with the splitctrl but if i do a margin-top it affects other things... Click to expand... This is from the navigation.css Adjust the 2nd value Code: .navTabs .navTab.PopupClosed:hover .SplitCtrl { /* nav_menu_gadget, height: 17px */ background: transparent url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat -128px {xen:calc '(@headerTabHeight - 17) / 2 + 1'}px; } Rich (BB code): .navTabs .navTab.PopupClosed:hover .SplitCtrl { background-position: -128px 16px; }