Thread Starter
Chuckie
(@ajtruckle)
See:
https://www.dropbox.com/s/8c3aazyin80ag2c/Headings-DoThisOne.jpg?dl=0
I only want to transform those specific classes inside the bbp-header area and not same same classes in the bb-body.
If this is not possible I will just change the static text to uppercase.
Thread Starter
Chuckie
(@ajtruckle)
I have found this (modified) style:
/* Forum List */
#bbpress-forums .forum-titles .bbp-forum-topic-count::before {
content: "\f307";
font: 400 21px/1 dashicons;
}
#bbpress-forums .forum-titles .bbp-forum-reply-count::before { content: "\f125";
font: 400 21px/1 dashicons;
}
/* Forum Topic */
#bbpress-forums .forum-titles .bbp-topic-voice-count::before {
content: "\f307";
font: 400 21px/1 dashicons;
}
#bbpress-forums .forum-titles .bbp-topic-reply-count::before { content: "\f125";
font: 400 21px/1 dashicons;
}
/* Forum List and Forum Topic */
#bbpress-forums .forum-titles .bbp-forum-topic-count,
#bbpress-forums .forum-titles .bbp-forum-reply-count,
#bbpress-forums .forum-titles .bbp-topic-voice-count,
#bbpress-forums .forum-titles .bbp-topic-reply-count {
overflow: hidden;
font-size: 0 !important;
margin : 0!important;
}
-
This reply was modified 6 years, 7 months ago by
Chuckie.