# FKB Pro - Social theme

**URL:** https://meta.discourse.org/t/fkb-pro-social-theme/234323
**Category:** Theme
**Created:** [July 28, 2022, 8:58pm UTC](https://meta.discourse.org/t/fkb-pro-social-theme/234323 "2022-07-28T20:58:41Z")
**Posts on this page:** 1
**Showing post:** 114

<div class="post-metadata">

### Author: ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)
#### Post date: [April 16, 2023, 7:54am UTC](https://meta.discourse.org/t/fkb-pro-social-theme/234323/114 "2023-04-16T07:54:04Z")

</div>

> [@EchoBilisim](#):
>
> I think it’s doing it from the browser, I deleted the history, there is no problem, it works very well.
> 
> I have another question, there is an icon in the login button, but there is no icon in the register button, how to add an icon to the register button?

That is great if it’s work 🙂  
I think you got the answer here: [Add icon to register button - #2 by Lilly](https://meta.discourse.org/t/add-icon-to-register-button/261802/2)

> [@Jagster](#):
>
> I would like to hide view counts at topic cards

You can do it with some CSS.

Hide views.

```scss
.topic-list {
  .main-link {
    .link-bottom-line {
      .views {
        display: none;
      }
    }
  }
}

```

> [@Jagster](#):
>
> Another solution would be hiding totally that box containing likes and views.

Hide likes and views.

```scss
.topic-list {
  .main-link {
    .link-bottom-line {
      .likes,
      .views {
        display: none;
      }
    }
  }
}

```

---

_[View the full topic](https://meta.discourse.org/t/fkb-pro-social-theme/234323)._
