PLS HELP?? (coding related)

I keep struggling with coding the interest part of my blog, how do I do that? (and if anyone can send me the piece of code in HTML or smth, then that's greatly appreciated!!!)

 im a noob at this ;-;


0 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

amber

amber's profile picture

what part are you having problems with exactly?


Report Comment



So, it's specifically the interest part of my blog. I'm having trouble with changing the light blue colors inside of it to something else like a picture or a single color.

by namirian; ; Report

When you inspect the element of your profile, and you look in the style section, there will be a part that looks like this:

:root{
--light-gray: #f2f0f0;
--gray: #e3e3e3;
--dark-gray: #919191;
--darker-gray: #545454;
--logo-blue: #1D4ED8;
--darker-blue: #1E40AF;
--lighter-blue: #60A5FA;
--even-lighter-blue: #BFDBFE;
--lightest-blue: #DBEAFE;
--red: #FF0000;
--dark-orange: #ED0707;
--light-orange: #f9c56c;
--even-lighter-orange: #fcdbb8;
--strange-yellow: #dbae2e;
--green: #34D399;
--light-green: #E6F8DD;
--medium-green: #A0C99C;
--dark-green: #059669;

The part you'd want to change in your Interests section are the lightest-blue and the even-lighter-blue.

I am not 100% sure on how to add an image, but if you want to experiment with your layout without having to constantly edit and save, here is a live preview website that I used to edit mine.

(I hope this comment displays correctly, and I hope this helps. Good luck! Feel free to ask me anything else if you need it.)

by amber; ; Report