XF 2.1 How to hide custom thread fields titles?

Mave

Active member
Licensed customer
I want to hide these:

ijKu0V0.png


Thanks in advance!
 
These are custom thread fields, found here:

GFdZQwR.png


Title is required and shows up as you can see in my first post. I want to hide those titles for these custom fields only.

Why can't you simply remove those custom thread fields?
 
You mean you do not want them to appear in the message block?
You're right. I could simply do

Code:
div.message-fields.message-fields--before dl.pairs.pairs--columns.pairs--fixedSmall dt{
    display:none
}

But then I'd hide every custom field on the forum instead of just these two.
 
You're right. I could simply do

Code:
div.message-fields.message-fields--before dl.pairs.pairs--columns.pairs--fixedSmall dt{
    display:none
}

But then I'd hide every custom field on the forum instead of just these two.

Well the correct css would be .message-fields not what you put above but anyway I believe you can target a specific custom thread field using Field ID

@S Thomas would be able to help
 
Back
Top Bottom