How to remove this

Kemri

Member
Registered
Joined
Jun 26, 2022
Messages
16
Points
13

Reputation:

i need to remove the text "forum list" on my home page . how to do that?
Screenshot_2022-07-05 LeakLanka com - The Adult Website in Sri Lanka(8).png
 

one_finger_man

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

Reputation:

add this to your extra.less

CSS:
[data-template="forum_list"]
{
    .p-title-value {
        display: none;
    }
    .p-title {
        float: right;
    }
}
/**********/
 

hirowatch

ReadOnly
Collaborate
Registered
Joined
May 25, 2020
Messages
25
Points
58

Reputation:

CSS:
.template-forum_list {
    .p-title {
        justify-content: flex-end;

        .p-title-value {
            display: none;
        }
    }
}
 

Kemri

Member
Registered
Joined
Jun 26, 2022
Messages
16
Points
13

Reputation:

View previous replies…

one_finger_man

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

Reputation:

mine works to but i dont know y you are having issues so i would say use the one above
 
Top