How can I get rid of the words and just leave the buttons?
One of the issues I think Lucid Template has is it cuts off words...
It doesn't look good and I wish to just get rid of the words next to the buttons and just leave the buttons so it looks cleaner. Where can I get rid of the words to the buttons?
-
-
·
LeonidS
- ·
Hello Will Roberts !
If you want to hide the titles in your Timeline posts then try to apply the following CSS code in your Lucid's mix Custom Styles area:
@media only screen and (max-device-width: 480px) {
.bx-tl-item-activity span.sys-action-do-text {
display: none;
}
.bx-tl-item-activity span.bx-menu-item-title {
display: none;
}
}
-
·
LeonidS
-
They're still there
-
-
-
·
LeonidS
- ·
UPDATE: There was applied the following script in the Studio->Designer->Injections->Body area:
<script langauge="javascript">
$(".bx-tl-item-activity .bx-menu-item-title").remove();
$(".bx-tl-item-activity .sys-action-do-text").remove();
</script>
-
·
LeonidS
20210203_193907.jpg