XF 2.2 Need help for reducing the size of Body Header

Hello, I want to reduce the width of this Body Header on Forum Index Page, I tried to find the code, but I couldn't find.
Please help me and provide the code for fixing this issue.


t1GCzD4.jpg


x4Z57cJ.jpg
 
Last edited:
The class you are looking to target is p-body-header
It appears you want to change the height not the width?

On your site try adding this to the extra.less template...

CSS:
.p-body-header {
    padding: 5px;
    margin-bottom: 10px;
}

You can also shrink the area around your guest message by adding this to extra.less template...
CSS:
.p-guest--message {
    padding: 10px;
    margin: 10px auto;
}
 
The class you are looking to target is p-body-header
It appears you want to change the height not the width?

On your site try adding this to the extra.less template...

CSS:
.p-body-header {
    padding: 5px;
    margin-bottom: 10px;
}

You can also shrink the area around your guest message by adding this to extra.less template...
CSS:
.p-guest--message {
    padding: 10px;
    margin: 10px auto;
}
Thanks it worked.
 
Top Bottom