How to remove this?

riadipsc

Member
Registered
Joined
Jun 22, 2023
Messages
14
Points
3

Reputation:

I have hidden forum tile and button but didn't reduced the gap how can I reduce this gap?
 

Attachments

  • Screenshot_20230726-194610_Chrome.jpg
    Screenshot_20230726-194610_Chrome.jpg
    570.3 KB · Views: 165
  • Screenshot_20230726-195421_Chrome.jpg
    Screenshot_20230726-195421_Chrome.jpg
    694.3 KB · Views: 195

riadipsc

Member
Registered
Joined
Jun 22, 2023
Messages
14
Points
3

Reputation:

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

Added this code to extra.less and tile removed but gap not reduced.
 

Asradvdj

New member
Registered
Joined
Jul 19, 2023
Messages
4
Points
3

Reputation:

extra.less

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

Splicho

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

Reputation:

try this

CSS:
[data-template="forum_list"]

{

   .p-body-header {

         display: none;

}
}
 
Top