Hello,
I have an issue with my website.
I want to remove the tracking from header on the mobile site only. I want to leave only the search, account and cart options
A user needed to remove the tracking option from their mobile site header at tudoconexao.com, wanting to keep only search, account, and cart options visible.
Solution provided:
display: noneOutcome:
Hello,
I have an issue with my website.
I want to remove the tracking from header on the mobile site only. I want to leave only the search, account and cart options
Hi @Dawenn ,
Please go to Actions > Edit code > Assets > theme.css file and paste this at the bottom of the file:
@media screen and (max-width: 640px) {
.header__action-list .header__action-item:nth-child(3) {
display: none;
}
}
Worked perfectly! Thank you, you saved me ![]()