I tried your suggested code, but it placed a Star icon
my Block Header.
I think we are close though. For my footer at https://gayfriendlymarket.com/contact-gay-friendly-market/
What I am looking for is to completely replace the Block Filter
<div class=”lae-block-filter”><div class=”lae-block-filter-dropdown”><div class=”lae-block-filter-more”><span>All</span>
with the Fa Bars Icon which I believe is content: “\f0c9″;
I see the css for the Filter in the https://gayfriendlymarket.com/community/events/ Footer hints at the solution for their css ul.shortcode-filter but I am not sure which parts would apply to achieve my solution
ul.shortcode-filter {
display: inline-block;
padding: 0;
margin-bottom: 0;
}
ul.shortcode-filter li {
/*white-space: nowrap;
font-size:13px;
font-weight:300;
cursor:pointer;
display:block;
padding:0;
margin:10px;
line-height:1;*/
}
ul.shortcode-filter > li {
font-size: 13px;
display: inline-block;
margin: 0 7px;
cursor: pointer;
height: 35px;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
}
ul.shortcode-filter > li.active {
font-weight: bold;
}
ul.shortcode-filter > li.flexMenu-viewMore {
margin-right: 0;
padding-right: 0;
width: 15px;
text-align: center;
}
ul.shortcode-filter > li.flexMenu-viewMore.active ul.flexMenu-popup {
margin-top: 0px;
opacity: 1;
display: block;
}
ul.shortcode-filter > li.flexMenu-viewMore.active > a > i.fa.fa-bars:before {
content: ‘\F00D’;
}
ul.shortcode-filter > li.flexMenu-viewMore i {
color: #9e9e9e;
font-weight: 300;
font-size: 14px;
}
ul.shortcode-filter > li > ul.flexMenu-popup {
position: absolute;
display: block;
z-index: 10;
padding: 0;
margin: 0;
margin-top: -10px;
opacity: 0;
right: 0;
top: 35px;
background-color: #fff;
border: solid 1px #eee;
}
ul.shortcode-filter > li > ul.flexMenu-popup li {
line-height: 15px;
border-bottom: none;
text-align: right;
margin: 0;
padding: 10px 20px 10px 25px;
list-style-type: none;
}
ul.shortcode-filter > li > ul.flexMenu-popup li:hover {
background-color: #f4f4f4;
}
ul.shortcode-filter:after {
content: ”;
display: table;
clear: both;
}
Can you advise further based on this?
Thanks,
Gwen