I was wondering if anyone knew which code to use or remove in order to make the rounded corners on my blog exist without the square corners beside it? Hopefully that made sense lol. Thanks 4 reading and hopefully helping!
you could try rounding the corners of #about and #who maybe ?
like this:
about{
border-top-left-radius: 25px;
border-top-right-radius: 25px;
}
you could also move the headers up (they're probably pushed down from the top, so remove the top property, this is what I just did to my css) and then remove the bottom border of the headers. you can also remove the padding-top property if you don't like the space the text has from the top.
you could try rounding the corners of #about and #who maybe ?
like this:
about{
border-top-left-radius: 25px;
border-top-right-radius: 25px;
}
you could also move the headers up (they're probably pushed down from the top, so remove the top property, this is what I just did to my css) and then remove the bottom border of the headers. you can also remove the padding-top property if you don't like the space the text has from the top.
about{
border-bottom:0px;
}
I hope this helps!