Remove post thread button

Linda

Well-known member
Registered
Joined
Oct 22, 2021
Messages
123
Points
38

Reputation:

Remove post thread button
How to remove the button?

I have the two buttons before the forum overview gone. The other I would like to aben away too. Is it possible?

I have two images.
non.png dfdfdfdfdfsdwefdewsfewfwsdf.png
 

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
419
Points
53

Reputation:

you want to remove both right here is the codes to remove both add to extra.less

CSS:
[data-template="forum_list"] {
    .p-title-pageAction {
        display: none;
    }
}
 

Linda

Well-known member
Registered
Joined
Oct 22, 2021
Messages
123
Points
38

Reputation:

Thanks for your help
The button (on the right side of the image) is still there.
 

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
836
Points
153

Reputation:

Thanks for your help
The button (on the right side of the image) is still there.
LindaChange forum_list to forum_view

or do this


Code:
[data-template="forum_list"], [data-template="forum_view"] {
    .p-title-pageAction {
        display: none;
    }
}
 
View previous replies…

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
419
Points
53

Reputation:

Your code didn't work, cause your code was for the index page, but he wanted to remove it from the thread list, which is forum_view
Waduhekok than try this these should work i just test this

CSS:
[data-container-key="node-2"],
[data-container-key="node-4"]
{
    .p-title-pageAction
    {
        display: none;
    }
}
 

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
836
Points
153

Reputation:

ok than try this these should work i just test this

CSS:
[data-container-key="node-2"],
[data-container-key="node-4"]
{
    .p-title-pageAction
    {
        display: none;
    }
}
one_finger_manI think you didn't understand xD.. I gave him the correct code already.
 
Top