Hello there! I had a question in regards to your new theme; I really like the blockquote border but the thing is how do you do that? I've been looking around for a code but I can't find one, so I was hoping if you could help me out here. Please and thank you for sharing the codes you have c:
Oh I’d love to help! I hope you don’t mind if I publish this instead of answering it privately. Idk maybe someone else wants to know how to do it too. Tis really easy. In the css, all you gotta do is find the code for the blockquote and change the border radius by however many pixels you want. I’ll give you an example. This is how the code looks like in the theme I just posted:
blockquote { padding:0px; padding-left:10px; margin:8px; border-left:2px solid #bf4f6a ; border-radius:10px;}
See? The border-radius is 10px which means the left border will be curved in by ten pixels. And this border-radius thing works for just about anything with a border so if you want curved borders, all you gotta do is add that to the code. I hope I helped!