Hi, I am trying to display a font awesome icon in the mobile for the add listings button only and not on the desktop add listing button. I tried this css but it doesnt seem to work. Any help would be appreciated. Thanks.
@media only screen and (max-width: 767px) {
.hp-header__menu .hp-menu__item--listing-submit i::before {
content: "\f0c9";
font-family: FontAwesome;
font-size: 1.2em;
margin-right: 0.5em;
}
}
andrii
February 14, 2023, 10:05am
3
Hi,
If I understand you correctly, please try this CSS snippet:
@media only screen and (max-width: 48em) {
.header-navbar .hp-menu__item--listing-submit .fa-plus:before {
content: "\f0c9";
font-size: 1.2em;
margin-right: 0.5em;
}
}
Please note that it can require further customization.
2 Likes
That worked perfect. Thanks!
1 Like
system
Closed
March 16, 2023, 10:49am
5
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.