XF 1.2 Remove this white border?

xenTheory

Active member
I've nearly completed my newest theme and it's taken quite a while. I've done 99% of all styling using the Style Properties and modified a few templates, one of the last parts is this annoying border. I've inspected the element, viewed the source and checked every Style Property as well as applying any additional !important to css that should include that area... however none of it has worked.

I've drawn a red line next to the white 1px border I'm talking about. Any help is appreciated!

Untitled-15.webp
 
try setting the value to zero or modify to your preference.

Code:
.profilePage .mast {
border-right: 0 solid #D7EDFC !important;
}
.profilePage .primaryUserBlock {
border-top: 0 solid #D7EDFC !important;}
 
try setting the value to zero or modify to your preference.

Code:
.profilePage .mast {
border-right: 0 solid #D7EDFC !important;
}
.profilePage .primaryUserBlock {
border-top: 0 solid #D7EDFC !important;}

Cheers @Shelley, fixed it although I tried .mast before but must have typed it incorrectly.

For anyone lse having the same problem you also need to add:

Code:
.profilePage .mainProfileColumn {
border: 0 solid #D7EDFC !important;
}
 
Top Bottom