Hi
Pls could u provide the solution to adding a red box behind the nav menu “sale” attached example below
Theme: warehouse
URL: tennisgiant.com
Wanted result:
Cheers
Goal: add a red box behind the “Sale” item in the Warehouse theme’s navigation on tennisgiant.com; a screenshot shows the desired appearance.
Proposed solution: edit the theme stylesheet.
Explanation:
Outcome/status: a single CSS-based fix was suggested; no confirmation from the original poster yet. The screenshot is central to the requested visual result.
Hi
Pls could u provide the solution to adding a red box behind the nav menu “sale” attached example below
Theme: warehouse
URL: tennisgiant.com
Wanted result:
Cheers
HI @chrisjames11
in this case You can try follow this path:
Themes => edit code => asset => theme.css.
and add this code to bottom of the file theme.css
@media(min-width: 1000px){
.nav-bar__item:nth-child(9) .nav-bar__link{
background: red;
padding: 10px;
}
}