XF 1.4 seeking help on navbar

Brad P

Well-known member
please see below picture, i am trying to add a blue strip below the navbar so it goes with the blue tab
 

Attachments

  • blue boarder strip.webp
    blue boarder strip.webp
    115.6 KB · Views: 22
im close, there is a gab between the tab and the boarder line i want it to match the colour of the tab blue and blen in
 

Attachments

  • Screenshot (43).webp
    Screenshot (43).webp
    60.4 KB · Views: 13
im close, there is a gab between the tab and the boarder line i want it to match the colour of the tab blue and blen in
I recently added the following into extra.css with no gap showing. However, if you were to try it, it may not change anything for your style.

Code:
.navTabs { border-bottom: 4px solid rgb(57, 175, 36);border-top: none; }
 
im close, there is a gab between the tab and the boarder line i want it to match the colour of the tab blue and blen in
Code:
.navTabs .navTab {
  padding-top: 1px;
}

upload_2015-5-23_13-4-19.webp

Then you have the tablinks hiding that bar
upload_2015-5-23_13-5-47.webp

Add to EXTRA.css
Code:
.navTabs .navTab.selected .tabLinks {
  margin-top: 5px;
}
upload_2015-5-23_13-8-53.webp
 
Top Bottom