XF 1.3 What is the Public Control Item for + Quote titled?

FredC

Well-known member
As the title indicates..

Trying to rework my Public COntrol links/buttons by adding some css rules but cant figure out the item name.

Thanks in advance..
 
If you mean the CSS class, try .message .publicControls .MultiQuoteControl
Thanks a Ton Brogan that did it.. I was building on your "Make post sharing more obvious" Resource.. Of course as you can see i actually used the FA modification by @RoldanLT
SS.webp
Thanks again to the both of you.
 
Last edited:
  • Like
Reactions: rdn
Here is my extra css for those items..

Code:
.message .publicControls .item.postNumber:before {
    content: "\f045";
    font-family: FontAwesome;
    margin-right: 3px;
    color: #771C1C;
}


.message .publicControls .item.MultiQuoteControl:after {
    content: "\f10e";
    font-family: FontAwesome;
    margin-left: 3px;
    color: #771C1C;
}


.message .publicControls .item.like:before {
    content: "\f164";
    font-family: FontAwesome;
    margin-right: 3px;
    color: #771C1C;
}


.message .publicControls .item.unlike:before {
    content: "\f165";
    font-family: FontAwesome;
    margin-right: 3px;
    color: #771C1C;
}


.message .publicControls .item.reply:before {
    content: "\f112";
    font-family: FontAwesome;
    margin-right: 3px;
    color: #771C1C;
}

Keep in mind these Are Font Awesome icons.. So you must have FA installed for the icons to appear. (also be sure you are calling the latest version of FA as some of the newer icons wont work with earlier versions.
 
Top Bottom