Site URL: https://www.lesmenagers.ca/
Hey there,
The dropdown menu of my "Services" section in both EN and FR are not complete aaaand for both language it's showing different info.
For the EN version it's showing the first 3 linked page under that menu and for the FR version it's showing the last 2 linked pages. There is a total of 5 pages... Sooo I am assuming there is something in my custom CSS coding that's off.
Can someone please please help me.
Here's what I entered in my custom CSS for the Bilingual coding :
for EN pages
<style>
#header .header-nav-item:nth-child(5) {display:none}
#header .header-nav-item:nth-child(6) {display:none}
#header .header-nav-item:nth-child(7) {display:none}
#header .header-nav-item:nth-child(8) {display:none}
#header .header-nav-item:nth-child(9) {display:none}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(5) {display:none}}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(6) {display:none}}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(7) {display:none}}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(8) {display:none}}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(9) {display:none}}
</style>
for FR pages
<style>
#header .header-nav-item:nth-child(1) {display:none}
#header .header-nav-item:nth-child(2) {display:none}
#header .header-nav-item:nth-child(3) {display:none}
#header .header-nav-item:nth-child(4) {display:none}
#header .header-nav-item:nth-child(10) {display:none}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(1) {display:none}}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(2) {display:none}}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(3) {display:none}}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(4) {display:none}}
@media screen and (max-width:1511px){#header .header-menu-nav-item:nth-child(10) {display:none}}
</style>
Thank you so much !