I have created this snippet of code for EXTRA.css.
The purpose of it is to allow me custom override of the navtab tab width elements in responsive narrow view only.
It works as designed and desired.
I have one issue though is that I cannot find why while viewing in responsivenarrow view, I get an extra border at the bottom the active tab in publicTabs.
just tried adding
to below the padding padding string of PublicTabs.
But that doesnt seem to change anything.
Also just tried
to no avail
Can anybody see what I am doing wrong here ?
edited to reflect what I just found and one of my misdiagnoses.
The purpose of it is to allow me custom override of the navtab tab width elements in responsive narrow view only.
Code:
@media (max-width:@maxResponsiveNarrowWidth)
{
.navTabs .publicTabs .navLink
{
padding: 0 15px !important;
}
.navTabs .visitorTabs .navLink
{
padding: 0 7px !important;
}
}
I have one issue though is that I cannot find why while viewing in responsivenarrow view, I get an extra border at the bottom the active tab in publicTabs.
just tried adding
Code:
border-bottom: none !important;
But that doesnt seem to change anything.
Also just tried
Code:
.navTabSelected
}
border-bottom: none !important;
}
Can anybody see what I am doing wrong here ?
edited to reflect what I just found and one of my misdiagnoses.
Last edited: