Sep 17, 2021 4:58 pm
Hello.
Any ideas why a dropdown arrow appeared in the paging in a topic? Wasn't there and also i doesn't appear in this site (here).
Thanks
7 Replies
Sep 18, 2021 5:04 am
I think your WP theme overrides the CSS formatting that hides the arrow
#wpforo #wpforo-wrap .wpf-navi select.wpf-navi-dropdown {
appearance:none;
width:auto;
-webkit-appearance:none;
-moz-appearance: none;
font-size:12px;
padding:1px 10px!important;
margin:0 1px 0 2px;
cursor:pointer;
}
try it with !important;
#wpforo #wpforo-wrap .wpf-navi select.wpf-navi-dropdown {
appearance: none !important;
-webkit-appearance: none !important;
-moz-appearance: none !important;
}
Sep 18, 2021 9:46 am
then it should come from here (Neve Theme)
select {
min-height:35px;
background-repeat:no-repeat;
background-position:right;
background-size:18px;
padding-right:20px!important;
background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZmlsbD0iIzYyNjI2MiIgZD0iTTE1IDhsLTQgNi00LTZoOHoiLz48L3N2Zz4=)
}
try
#wpforo #wpforo-wrap .wpf-navi select.wpf-navi-dropdown {
background-image: none;
}
or
#wpforo #wpforo-wrap .wpf-navi select {
background-image: none;
}
Sep 18, 2021 9:59 am
the inserted css code is not applied correctly
background-image: url(data:image/svg+xml;base64,
becomes
background-imageimage/svg+xml;base64,
see my post above