Remove forumbg/forabg border

For support and discussion related to templates, themes, and imagesets in phpBB 3.2.
User avatar
Kailey
Community Team Leader
Community Team Leader
Posts: 3937
Joined: Mon Sep 01, 2014 1:00 am
Location: sudo rm -rf /
Name: Kailey Snay

Remove forumbg/forabg border

Post by Kailey »

Hello,

I'm trying to remove the border that phpBB uses for forumbg/forabg. Below are two pictures, the original and the desired.

Original
original.png

Desired
desired.png
You do not have the required permissions to view the files attached to this post.
Kailey Snay - Community Team Leader
Knowledge Base | Documentation | Community rules
If you have any questions about the rules/customs of this website, feel free to send me a PM.

My little corner of the world | Administrator @ phpBB Modders
User avatar
Talk19Zehn
Registered User
Posts: 912
Joined: Tue Aug 09, 2011 1:10 pm

Re: Remove forumbg/forabg border

Post by Talk19Zehn »

Hello, only briefly.The individual case decides ...

Code: Select all

.forabg {
    margin-bottom: 4px;
    padding: 0px;
    clear: both;
    border-radius: 7px;
}
... border-radius (none white corners)... ?

Code: Select all

.forabg {
    margin-bottom: 4px;
    padding: 0px;
    clear: both;
    border-radius: 0px;
}
... and so on forumbg

next steps also only briefly

Code: Select all

li.header dl.row-item dt .list-inner {
    padding-left: 10px;
    padding-right: 50px;
}

Code: Select all

li.header dt, li.header dd {
    line-height: 1em;
    border-left-width: 0;
    margin: 8px 0 4px 0;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

Return to “[3.2.x] Styles Support & Discussion”