
I'm referring to that stupid white border around my chosen border😠Does anybody know how to remove it?? Any help would be greatly appreciated!!
I've already set the margin to zeroÂ

I'm referring to that stupid white border around my chosen border😠Does anybody know how to remove it?? Any help would be greatly appreciated!!
I've already set the margin to zeroÂ
3 Kudos
Comments
Displaying 2 of 2 comments ( View all | Add Comment )
ChaosSwissroll
I've seen this issue before, but I forgot the solution :')
Awee:((
by ListenToMyHeartToHearItSing; ; Report
GOAT
main {
background-color: transparent; }
:3
It won't work:((
by ListenToMyHeartToHearItSing; ; Report
it will i promise
1st find this in yr code
main {
background-color: rgb(255, 255, 255) !important; }
delete that, replace it with what i posted and tada
the white space is gone <3
by GOAT; ; Report
alternately
main {
background-color: transparent !important; }
:D
by GOAT; ; Report
jsyk the "main" container stuff is always set at default to white
which is why ur seeing that
just follow what i said above and you'll be fine i promise <3
by GOAT; ; Report
It still won't work for some reason:( This is my code, if it helps:
main {
background-color: transparent !important;
background-size: 100% 100%;
background-repeat: no-repeat;
border-width: 45px;
border-style: solid;
border-color: none;
border-image-source: url("https://i.postimg.cc/FHw2V03g/IMG_1523.png");
border-image-slice: 75;
border-image-repeat: round;
border-image-width: 1;
width: 810px;
height: 480px;
overflow-y: scroll;
margin: 0;
}
by ListenToMyHeartToHearItSing; ; Report
you got more than one call referencing "main" tho :o
honestly, that's why there's a conflict
dw its entirely fixable
get rid of any thing in main referencing a background-color
then switch it transparent :3
by GOAT; ; Report
check ALL of yr code you'll find more than one main bein called :3
by GOAT; ; Report
Ahhh, thank you so much!! <3 Could you perhaps explain what you mean by things referencing the main call?:)
by ListenToMyHeartToHearItSing; ; Report
Ohh, alright!! Thank you so much!:)
by ListenToMyHeartToHearItSing; ; Report
1. edit profile
2. find any instance of "main" and delete em (you might have to scroll a bit idk)
3. replace the mains you got rid of with this one chunk of code instead
main {
background-color: transparent !important;
background-size: 100% 100%;
background-repeat: no-repeat;
border-width: 45px;
border-style: solid;
border-color: none;
border-image-source: url("https://i.postimg.cc/FHw2V03g/IMG_1523.png");
border-image-slice: 75;
border-image-repeat: round;
border-image-width: 1;
width: 810px;
height: 480px;
overflow-y: scroll;
margin: 0; }
and THEN you should be good to go :3
by GOAT; ; Report
Ahh, alright!! Thank you so much for your kindness and patience!!<3
by ListenToMyHeartToHearItSing; ; Report
np it should look like this afterwards (which ig is what you wanted)
https://i.ibb.co/8nWz69J3/Screenshot-from-2025-11-17-22-18-57.png
:D
by GOAT; ; Report
yeaaaaaaaa u did it! :DDD
by GOAT; ; Report
All thanks to you!!<3 I'm far too sleepy now and I've got school tomorrow but I'll make sure the follow your advice once I get home!:)
by ListenToMyHeartToHearItSing; ; Report