« Back to the HTML Forum

help with borders

Posted by pluto

posted

Forum: HTML Group

hiii!!


im completely new to all of this stuff so i have absolutely no idea what im doing to be completely honest

i've been working on the colour scheme of my profile but for some reason i just cant seem to change the blue bits on the left (like the interests section or contact section

is there anyway to change this or even just to hide the blue??


thanks for the help!!
pluto~~


Report Topic

2 Replies

Sort Replies:

Reply by heath

posted

<:style>

.table-section td{

background-color: color !important;

}

</style>


Permalink Report Reply

Reply by sev

posted

hi! there's a couple different ways you can go about this, so i'm going to try to show you a simple one. i went to your profile and looked at your page source, and i believe pasting the following code into your own code should work.

<style>

.profile .contact, .profile .url-info, .profile .table-section {

    border: 2px solid #c81c0a;

}

</style>

the '#c81c0a' is just a random red color i found, but you can replace it with whatever color you'd like (i used https://htmlcolorcodes.com/ to find colors). let me know whether or not this works, i'll try to help more if it doesn't!


Permalink Report Reply