@downpw said in NodeBB customisation:
@jac said in NodeBB customisation:
@phenomlab
Hi Mark,
Is there any way to put a borer on these boxes or style them to match the other widgets? So for example like the quote link and hover colour?
Many thanks
@JAC
Yeah it’s possible
example here for border color, background, or shadow, transparency, border radius :
.recent-cards .recent-card-container .recent-card {
height: 200px;
width: 100%;
padding: 10px;
position: relative;
border: 1px solid #YOURCOLOR; /*border color*/
box-shadow: 0px 0px 8px #YOURCOLOR; /*add a border shadow color*/
background-color: #YOURCOLOR; /*background color*/
border-radius: 5px; /*Radius*/
margin-bottom: 10px;
color: #YOURCOLOR; /* Text color*/
opacity: 0.8; /*Opacity, trnasparency*/
}
Other example for categories and time :
.recent-cards .recent-card-container .recent-card .footer .category-item a,
.recent-cards .recent-card-container .recent-card .footer .sort-info {
color: #YOURCOLOR;
white-space: nowrap;
text-overflow: ellipsis;
display: block;
overflow: hidden;
}
@jac said in NodeBB customisation:
@jac also do you know if the “user reading discussion” plugin will enable to view who’s reading the thread on mobile?
Hmm if you talk about nodebb-plugin-browsing-users, the don’t work on mobile
Brilliant thank you very much for the information @DownPW